Skip to content

Commit e9108cd

Browse files
brsonalexcrichton
authored andcommitted
test: Ignore run-make tests that don't work on BSD
1 parent 0e85e59 commit e9108cd

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

src/test/run-make/c-link-to-rust-staticlib/Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ ifneq ($(shell uname),Darwin)
44
EXTRAFLAGS := -lm -lrt -ldl -lpthread
55
endif
66

7+
# FIXME
8+
ifneq ($(shell uname),FreeBSD)
79
all:
810
$(RUSTC) foo.rs
911
ln -s $(call STATICLIB,foo-*) $(call STATICLIB,foo)
1012
$(CC) bar.c -lfoo -o $(call RUN,bar) $(EXTRAFLAGS) -lstdc++
1113
$(call RUN,bar)
1214
rm $(call STATICLIB,foo*)
1315
$(call RUN,bar)
16+
17+
else
18+
all:
19+
20+
endif

src/test/run-make/dep-info-custom/Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
-include ../tools.mk
22

3+
# FIXME
4+
ifneq ($(shell uname),FreeBSD)
35
all:
46
$(RUSTC) --dep-info $(TMPDIR)/custom-deps-file.d --crate-type=lib lib.rs
57
sleep 1
@@ -10,3 +12,7 @@ all:
1012
pwd
1113
$(MAKE) -drf Makefile.foo
1214
rm $(TMPDIR)/done && exit 1 || exit 0
15+
else
16+
all:
17+
18+
endif

0 commit comments

Comments
 (0)