Skip to content

Commit

Permalink
Auto merge of #14064 - epage:artifact, r=weihanglo
Browse files Browse the repository at this point in the history
test: Redact conditional compile-fail warning

I got a CI failure because the following line showed up:
```
[WARNING] build failed, waiting for other jobs to finish...
```
I'm assumin this is a race condition in the test for whether the successful target completed before the error or not.

Before snapbox, we used a `contains` check which didn't have this problem.  I'm replacing this with a `...` multi-line (0+) glob.
  • Loading branch information
bors committed Jun 13, 2024
2 parents 0d7c7b8 + 7d9e9e1 commit 35a436a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/testsuite/artifact_dep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,7 @@ error[E0425]: cannot find function `f2` in crate `d2`
For more information about this error, try `rustc --explain E0425`.
[ERROR] could not compile `d1` (bin "d1") due to 1 previous error
...
"#]])
.run();
Expand Down

0 comments on commit 35a436a

Please sign in to comment.