vorner / bumpalo-herd

Trying to create Sync bump allocator
Apache License 2.0
26 stars 4 forks source link

Miri flag passing changed #2

Closed RalfJung closed 3 years ago

RalfJung commented 3 years ago

cargo miri test changed to be more compatible with cargo test, but this means we had to find a different way to pass flags to the interpreter, so there now is a MIRIFLAGS environment variable for that. The old way still works for now, but is deprecated.

This affects the following line: https://github.com/vorner/bumpalo-herd/blob/3590e4edf69f85a66bfb9768c4b0f2e71e19ae72/ci-check.sh#L20 This should now be cargo miri test miri (running the same tests as cargo test miri).

vorner commented 3 years ago

Thank you for letting me know.