diff options
| author | Brian Anderson <[email protected]> | 2011-03-06 20:15:03 -0500 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-14 15:52:48 -0700 |
| commit | 595c4862ab60b72d74e55cc7fa0bdb9183573c93 (patch) | |
| tree | 08dc545590f6e4fa5f73943e1b1759f864e299bb | |
| parent | Add 99-bottles benchmarks to testsuite (diff) | |
| download | rust-595c4862ab60b72d74e55cc7fa0bdb9183573c93.tar.xz rust-595c4862ab60b72d74e55cc7fa0bdb9183573c93.zip | |
Remove broken 99-bottles makefile and run script
| -rw-r--r-- | src/test/bench/99-bottles/Makefile | 20 | ||||
| -rwxr-xr-x | src/test/bench/99-bottles/r.sh | 3 |
2 files changed, 0 insertions, 23 deletions
diff --git a/src/test/bench/99-bottles/Makefile b/src/test/bench/99-bottles/Makefile deleted file mode 100644 index 8d1d27f9..00000000 --- a/src/test/bench/99-bottles/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -RC:=../../../rustboot -RFLAGS:=-L ../../.. -TARGETS:= 99bob-simple 99bob-iter 99bob-tail 99bob-pattern -TARGET_X86:=$(addsuffix .x86,$(TARGETS)) -TARGET_LLVM:=$(addsuffix .llvm,$(TARGETS)) - -all : x86s llvms - -clean: - rm $(TARGET_X86) $(TARGET_LLVM) - -x86s : $(TARGET_X86) - -llvms: $(TARGET_LLVM) - -%.x86 : %.rs - $(RC) $(RFLAGS) $^ -o $@ - -%.llvm : %.rs - $(RC) $(RFLAGS) -llvm $^ -o $@
\ No newline at end of file diff --git a/src/test/bench/99-bottles/r.sh b/src/test/bench/99-bottles/r.sh deleted file mode 100755 index 9da274e4..00000000 --- a/src/test/bench/99-bottles/r.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -make -k $1.x86 -DYLD_LIBRARY_PATH=../../.. ./$1.x86 |