diff options
| author | Graydon Hoare <[email protected]> | 2010-07-04 22:41:04 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-04 22:41:04 -0700 |
| commit | 24afa7532fdebed22321d1203dd2c2e199c76b9a (patch) | |
| tree | a3d65a601d8e65fe257b3e82bb336fbf919220c4 /src | |
| parent | Move NO_VALGRIND check below MINGW_CROSS. (diff) | |
| download | rust-24afa7532fdebed22321d1203dd2c2e199c76b9a.tar.xz rust-24afa7532fdebed22321d1203dd2c2e199c76b9a.zip | |
XFAIL native-mod when running MINGW_CROSS.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 2023d9ed..bed03b49 100644 --- a/src/Makefile +++ b/src/Makefile @@ -480,6 +480,10 @@ TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \ infinite-vec-type-recursion.rs \ ) +ifdef MINGW_CROSS +TEST_XFAILS_X86 += test/run-pass/native-mod.rc +TEST_XFAILS_LLVM += test/run-pass/native-mod.rc +endif ifdef CFG_WINDOWSY TEST_XFAILS_X86 += test/run-pass/native-mod.rc TEST_XFAILS_LLVM += test/run-pass/native-mod.rc |