about summary refs log tree commit diff
path: root/src/test/run-make/execution-engine/Makefile
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-07-25 13:32:59 -0700
committerJan-Erik Rediger <janerik@fnordig.de>2016-07-29 10:29:59 +0200
commit5fa55781bd77f7a9fbdb3af8fa4e1b0cd0b1cf06 (patch)
tree0ae46e093535ccc5039703f31fdd3891d8146ed2 /src/test/run-make/execution-engine/Makefile
parente8f76661f13620f075626d27f94750ea94d6cf2e (diff)
downloadrust-5fa55781bd77f7a9fbdb3af8fa4e1b0cd0b1cf06.tar.gz
rust-5fa55781bd77f7a9fbdb3af8fa4e1b0cd0b1cf06.zip
test: Remove the execution-engine test
We don't actually officially support this at all, and the execution engine
support in LLVM we've had to gut as it's not compiling on MinGW, so just delete
this test for now.
Diffstat (limited to 'src/test/run-make/execution-engine/Makefile')
-rw-r--r--src/test/run-make/execution-engine/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/run-make/execution-engine/Makefile b/src/test/run-make/execution-engine/Makefile
deleted file mode 100644
index 4c818cd99e2..00000000000
--- a/src/test/run-make/execution-engine/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
--include ../tools.mk
-
-# FIXME: ignore freebsd
-# This is a basic test of LLVM ExecutionEngine functionality using compiled
-# Rust code built using the `rustc` crate.
-
-ifeq ($(filter executionengine,$(LLVM_COMPONENTS)),executionengine)
-
-ifneq ($(shell uname),FreeBSD)
-all:
-	$(RUSTC) test.rs
-	$(call RUN,test $(RUSTC))
-else
-all:
-
-endif
-
-else
-all:
-
-endif