diff options
| author | Jeffrey Yasskin <[email protected]> | 2010-07-24 16:01:34 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-08-06 17:25:27 -0700 |
| commit | 581a95a804f77259153c030d39f861282b468612 (patch) | |
| tree | 9b31cad6fe2ac9107a99baa70c4872666a1b7188 /src/Makefile | |
| parent | Change the destructor-ordering test to use channels instead of a shared mutab... (diff) | |
| download | rust-581a95a804f77259153c030d39f861282b468612.tar.xz rust-581a95a804f77259153c030d39f861282b468612.zip | |
Add an int->str conversion function.
The test currently fails because string equality isn't implemented.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index aaf2e94f..792eeec0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -395,6 +395,7 @@ TEST_XFAILS_X86 := $(TASK_XFAILS) \ test/run-pass/fn-lval.rs \ test/run-pass/generic-fn-infer.rs \ test/run-pass/generic-recursive-tag.rs \ + test/run-pass/int-lib.rs \ test/run-pass/iter-ret.rs \ test/run-pass/lib-deque.rs \ test/run-pass/lib-map.rs \ @@ -464,6 +465,7 @@ TEST_XFAILS_LLVM := $(TASK_XFAILS) \ import.rs \ inner-module.rs \ integral-indexing.rs \ + int-lib.rs \ iter-range.rs \ iter-ret.rs \ large-records.rs \ |