diff options
| author | Graydon Hoare <[email protected]> | 2010-10-22 17:23:53 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-10-22 17:23:53 -0700 |
| commit | bd9a8fd57b87bc66c784a826084e8515f78bac34 (patch) | |
| tree | 6f5f777a17a5bfbfc6eb911a22cda8c711e4e517 /src/Makefile | |
| parent | Implement check-exprs, un-xfail 5 rustc tests. (diff) | |
| download | rust-bd9a8fd57b87bc66c784a826084e8515f78bac34.tar.xz rust-bd9a8fd57b87bc66c784a826084e8515f78bac34.zip | |
Attempt to extinguish burning tree.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 3d5f5e86..f387a08d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -500,7 +500,6 @@ TEST_XFAILS_SELF := $(filter-out \ $(addprefix test/run-pass/, \ bool-not.rs \ char.rs \ - div-mod.rs \ hello.rs \ int.rs \ item-name-overload.rs \ @@ -704,7 +703,8 @@ test/run-pass/%.out.tmp: test/run-pass/%$(CFG_EXE_SUFFIX) $(CFG_RUNTIME) @$(call CFG_ECHO, run: $<) $(CFG_QUIET)$(call CFG_RUN_TARG, $<) > $@ -test/run-fail/%-boot.out.tmp: test/run-fail/%$(CFG_EXE_SUFFIX) $(CFG_RUNTIME) +test/run-fail/%-boot.x86.out.tmp: test/run-fail/%-boot.x86$(CFG_EXE_SUFFIX) \ + $(CFG_RUNTIME) $(CFG_QUIET)rm -f $<.tmp @$(call CFG_ECHO, run: $<) $(CFG_QUIET)rm -f $@ @@ -712,7 +712,7 @@ test/run-fail/%-boot.out.tmp: test/run-fail/%$(CFG_EXE_SUFFIX) $(CFG_RUNTIME) if [ $$X -eq 0 ] ; then exit 1 ; else exit 0 ; fi $(CFG_QUIET)grep --text --quiet \ "`awk -F: '/error-pattern/ { print $$2 }' \ - $(basename $(basename $(basename $@ -boot.out.tmp))).rs \ + $(subst -boot.x86.out.tmp,.rs,$@) \ | tr -d '\n\r'`" $@ test/compile-fail/%-boot.x86.out.tmp: test/compile-fail/%.rs $(BREQ) |