mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 04:05:27 +00:00
11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rustup component add miri
|
|
cargo miri setup
|
|
|
|
export MIRIFLAGS="-Zmiri-strict-provenance"
|
|
|
|
cargo miri test
|
|
cargo miri test --target mips64-unknown-linux-gnuabi64
|