Skip to content

Commit

Permalink
chore(ci): Distinguish between expected failures and compiler panics …
Browse files Browse the repository at this point in the history
…in `compile_failure` tests. (#2518)
  • Loading branch information
nickysn authored Sep 1, 2023
1 parent 92af05a commit e9f952d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/nargo_cli/build.rs
Original file line number Diff line number Diff line change
@@ -190,7 +190,7 @@ fn compile_failure_{test_name}() {{
cmd.arg("--program-dir").arg(test_program_dir);
cmd.arg("execute");
cmd.assert().failure();
cmd.assert().failure().stderr(predicate::str::contains("The application panicked (crashed).").not());
}}
"#,
test_dir = test_dir.display(),

0 comments on commit e9f952d

Please sign in to comment.