Skip to content

Commit af2f88f

Browse files
committed
fix: drop -Zpanic-on-unsupported from miri invocation
The flag was removed in rust-lang/miri#3952. This flag was mostly useful when running miri on a codebase for the first time, in combination with --no-fail-fast, to quickyl determine which tests could actually be ran under miri (as without this option, miri would abort the entire runtime on the first unknown FFI call, ignoring --no-fail-fast, so one could only determine these tests one at a time). However, for continuous integration, it didn't actually have any value, so we're not loosing anything by removing it. Signed-off-by: Patrick Roy <[email protected]>
1 parent a60aab6 commit af2f88f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/custom-tests.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
{
2424
"test_name": "miri",
25-
"command": "RUST_BACKTRACE=1 MIRIFLAGS='-Zmiri-disable-isolation -Zmiri-panic-on-unsupported -Zmiri-backtrace=full' cargo +nightly miri test --features backend-mmap",
25+
"command": "RUST_BACKTRACE=1 MIRIFLAGS='-Zmiri-disable-isolation -Zmiri-backtrace=full' cargo +nightly miri test --features backend-mmap",
2626
"platform": ["x86_64", "aarch64"]
2727
},
2828
{

0 commit comments

Comments
 (0)