diff options
| author | Lindsey Kuper <[email protected]> | 2011-03-24 18:20:49 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-25 00:15:56 -0700 |
| commit | bcc104ce79f153cd853920ff924e13f84793b61c (patch) | |
| tree | b751831c7db8f242cb1097f5e07c44cbb8556bd8 /Makefile.in | |
| parent | build: Generate an object file for stage0/libstd.dylib (diff) | |
| download | rust-bcc104ce79f153cd853920ff924e13f84793b61c.tar.xz rust-bcc104ce79f153cd853920ff924e13f84793b61c.zip | |
A first stab at the 'nbody' demo, with support for calling C sqrt().
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 129b46a8..5ddf5b78 100644 --- a/Makefile.in +++ b/Makefile.in @@ -638,7 +638,8 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \ bad-send.rs \ infinite-vec-type-recursion.rs \ tail-non-call.rs \ - writing-through-read-alias.rs) + writing-through-read-alias.rs) \ + $(S)src/test/bench/shootout/nbody.rs TEST_XFAILS_STAGE0 := $(FLOAT_XFAILS) \ $(addprefix $(S)src/test/run-pass/, \ |