1
Fork 0

Do not assert revisions list is empty for pretty printing tests

This commit is contained in:
Niko Matsakis 2016-03-03 04:17:39 -05:00
parent fff9c2b6db
commit 9601e6f252

View file

@ -213,7 +213,11 @@ fn run_valgrind_test(config: &Config, props: &TestProps, testpaths: &TestPaths)
} }
fn run_pretty_test(config: &Config, props: &TestProps, testpaths: &TestPaths) { fn run_pretty_test(config: &Config, props: &TestProps, testpaths: &TestPaths) {
assert!(props.revisions.is_empty(), "revisions not relevant here"); // Note: because we run the --pretty tests on the code in run-pass etc,
// we may see a list of revisions -- but we can just ignore them.
// We cannot assert that the list is empty as we do elsewhere.
//
// assert!(props.revisions.is_empty(), "revisions not relevant here");
if props.pp_exact.is_some() { if props.pp_exact.is_some() {
logv(config, "testing for exact pretty-printing".to_owned()); logv(config, "testing for exact pretty-printing".to_owned());