aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-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