move tests that no longer need MIR out of fullmir

This commit is contained in:
Ralf Jung 2018-07-11 21:13:42 +02:00
parent ff5b0fee33
commit 5f2f254695
8 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ RUSTFLAGS='-Zalways-encode-mir' xargo build
Now you can run miri against the libstd compiled by xargo:
```sh
MIRI_SYSROOT=~/.xargo/HOST cargo run --bin miri tests/run-pass-fullmir/vecs.rs
MIRI_SYSROOT=~/.xargo/HOST cargo run --bin miri tests/run-pass-fullmir/hashmap.rs
```
Notice that you will have to re-run the last step of the preparations above when

View file

@ -212,5 +212,5 @@ fn compile_fail_miri() {
// FIXME: run tests for other targets, too
compile_fail(&sysroot, "tests/compile-fail", &host, &host, true);
compile_fail(&sysroot, "tests/compile-fail-fullmir", &host, &host, true);
//compile_fail(&sysroot, "tests/compile-fail-fullmir", &host, &host, true);
}