Skip to content

Commit

Permalink
different debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed May 4, 2024
1 parent 6a4eec7 commit 242f2e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function run_tests {
# Also run some many-seeds tests. 64 seeds means this takes around a minute per test.
# (Need to invoke via explicit `bash -c` for Windows.)
time for FILE in tests/many-seeds/*.rs; do
MIRI_SEEDS=$MANY_SEEDS ./miri many-seeds "$BASH" -c "CARGO_LOG=cargo::core::compiler::fingerprint=trace ./miri run -v '$FILE'"
MIRI_SEEDS=$MANY_SEEDS ./miri many-seeds "$BASH" -c "./miri run -v '$FILE'"
done
fi
if [ -n "${TEST_BENCH-}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion miri-script/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ impl Command {
let miri_flags = flagsplit(&miri_flags);
let toolchain = &e.toolchain;
let extra_flags = &e.cargo_extra_flags;
let quiet_flag = if verbose { None } else { Some("--quiet") };
let quiet_flag = if verbose { Some("-v") } else { Some("--quiet") };
let mut cmd = if dep {
cmd!(
e.sh,
Expand Down

0 comments on commit 242f2e9

Please sign in to comment.