Do not assert revisions list is empty for pretty printing tests
This commit is contained in:
parent
fff9c2b6db
commit
9601e6f252
1 changed files with 5 additions and 1 deletions
|
@ -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());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue