We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfd240c commit 8697978Copy full SHA for 8697978
ci/ci.sh
@@ -58,8 +58,9 @@ function run_tests {
58
MIRIFLAGS="${MIRIFLAGS:-} -O -Zmir-opt-level=4 -Cdebug-assertions=yes" MIRI_SKIP_UI_CHECKS=1 ./miri test -- tests/{pass,panic}
59
60
# Also run some many-seeds tests. 64 seeds means this takes around a minute per test.
61
+ # (Need to invoke via explicit `bash` for Windows.)
62
for FILE in tests/many-seeds/*.rs; do
- MIRI_SEEDS=64 ./miri many-seeds ./miri run "$FILE"
63
+ MIRI_SEEDS=64 ./miri many-seeds "$BASH" -c ./miri run "$FILE"
64
done
65
66
# Check that the benchmarks build and run, but without actually benchmarking.
0 commit comments