Skip to content

Commit 4613e3d

Browse files
committed
disable bench tests on Windows
1 parent 5b37cd3 commit 4613e3d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ci/ci.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ function run_tests {
6363
done
6464

6565
# Check that the benchmarks build and run, but without actually benchmarking.
66-
HYPERFINE="bash -c" ./miri bench
66+
# But only do this on Linux; Windows is too cursed for this to work.
67+
# (Somehow WSL is getting in the way, see <https://github.com/rust-lang/miri/pull/3402>.)
68+
if [ "$HOST_TARGET" = x86_64-unknown-linux-gnu ]; then
69+
HYPERFINE="bash -c" ./miri bench
70+
fi
6771
fi
6872

6973
## test-cargo-miri

0 commit comments

Comments
 (0)