Skip to content

Commit

Permalink
chore: remove -Zmiri-tag-raw-pointers
Browse files Browse the repository at this point in the history
This argument to `miri` is no longer necessary, as Miri now performs
the checks it enables by default. Passing the unstable argument is now
deprecated, so this ought to fix CI.
  • Loading branch information
hawkw committed Apr 6, 2024
1 parent c839b60 commit 7587bda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,4 @@ jobs:
- name: Run Miri tests
run: cargo miri test --lib --no-fail-fast
env:
MIRIFLAGS: -Zmiri-disable-isolation -Zmiri-tag-raw-pointers
MIRIFLAGS: -Zmiri-disable-isolation
4 changes: 2 additions & 2 deletions bin/miri
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ set -x

cd "$(dirname "$0")"/..

MIRIFLAGS="-Zmiri-disable-isolation -Zmiri-tag-raw-pointers ${MIRIFLAGS:-}" \
cargo +nightly miri test --lib "${@}"
MIRIFLAGS="-Zmiri-disable-isolation ${MIRIFLAGS:-}" \
cargo +nightly miri test --lib "${@}"

0 comments on commit 7587bda

Please sign in to comment.