diff options
| author | Graydon Hoare <[email protected]> | 2010-11-04 07:55:33 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-11-04 07:55:33 -0700 |
| commit | 16faef2218ec5c3621079f04e6b093a5bb1b44c2 (patch) | |
| tree | 9278653ee3a42409e7f27ab5c52282ff1512d500 /src/Makefile | |
| parent | rustboot: When resolving recursively, build up error messages recursively as ... (diff) | |
| download | rust-16faef2218ec5c3621079f04e6b093a5bb1b44c2.tar.xz rust-16faef2218ec5c3621079f04e6b093a5bb1b44c2.zip | |
Fix buggy while and do-while translation in rustc. Add test.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 8406d307..33cb0a0d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -447,8 +447,9 @@ TEST_XFAILS_X86 := $(TASK_XFAILS) \ test/run-pass/mlist-cycle.rs \ test/run-pass/obj-as.rs \ test/run-pass/task-comm.rs \ - test/run-pass/vec-slice.rs \ test/run-pass/task-comm-3.rs \ + test/run-pass/vec-slice.rs \ + test/run-pass/while-and-do-while.rs \ test/run-fail/task-comm-14.rs \ test/compile-fail/bad-recv.rs \ test/compile-fail/bad-send.rs \ |