about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-02-28 19:32:43 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-04-06 15:55:43 -0700
commite9108cd7b80ad3ff3f2c1f93ad2807876596d758 (patch)
tree9c18ef75519450ab14c25f6abe7b18f4d69570d7
parent0e85e599dbcd08e2a0c0e1bfa3cf23ed4eb68197 (diff)
downloadrust-e9108cd7b80ad3ff3f2c1f93ad2807876596d758.tar.gz
rust-e9108cd7b80ad3ff3f2c1f93ad2807876596d758.zip
test: Ignore run-make tests that don't work on BSD
-rw-r--r--src/test/run-make/c-link-to-rust-staticlib/Makefile7
-rw-r--r--src/test/run-make/dep-info-custom/Makefile6
2 files changed, 13 insertions, 0 deletions
diff --git a/src/test/run-make/c-link-to-rust-staticlib/Makefile b/src/test/run-make/c-link-to-rust-staticlib/Makefile
index 134d15f37aa..78ac1f66bfc 100644
--- a/src/test/run-make/c-link-to-rust-staticlib/Makefile
+++ b/src/test/run-make/c-link-to-rust-staticlib/Makefile
@@ -4,6 +4,8 @@ ifneq ($(shell uname),Darwin)
 	EXTRAFLAGS := -lm -lrt -ldl -lpthread
 endif
 
+# FIXME
+ifneq ($(shell uname),FreeBSD)
 all:
 	$(RUSTC) foo.rs
 	ln -s $(call STATICLIB,foo-*) $(call STATICLIB,foo)
@@ -11,3 +13,8 @@ all:
 	$(call RUN,bar)
 	rm $(call STATICLIB,foo*)
 	$(call RUN,bar)
+
+else
+all:
+
+endif
diff --git a/src/test/run-make/dep-info-custom/Makefile b/src/test/run-make/dep-info-custom/Makefile
index 72ce26ee6c6..ca70ccae3da 100644
--- a/src/test/run-make/dep-info-custom/Makefile
+++ b/src/test/run-make/dep-info-custom/Makefile
@@ -1,5 +1,7 @@
 -include ../tools.mk
 
+# FIXME
+ifneq ($(shell uname),FreeBSD)
 all:
 	$(RUSTC) --dep-info $(TMPDIR)/custom-deps-file.d --crate-type=lib lib.rs
 	sleep 1
@@ -10,3 +12,7 @@ all:
 	pwd
 	$(MAKE) -drf Makefile.foo
 	rm $(TMPDIR)/done && exit 1 || exit 0
+else
+all:
+
+endif