aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Anderson <[email protected]>2011-03-06 20:15:03 -0500
committerGraydon Hoare <[email protected]>2011-03-14 15:52:48 -0700
commit595c4862ab60b72d74e55cc7fa0bdb9183573c93 (patch)
tree08dc545590f6e4fa5f73943e1b1759f864e299bb /src
parentAdd 99-bottles benchmarks to testsuite (diff)
downloadrust-595c4862ab60b72d74e55cc7fa0bdb9183573c93.tar.xz
rust-595c4862ab60b72d74e55cc7fa0bdb9183573c93.zip
Remove broken 99-bottles makefile and run script
Diffstat (limited to 'src')
-rw-r--r--src/test/bench/99-bottles/Makefile20
-rwxr-xr-xsrc/test/bench/99-bottles/r.sh3
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