Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove check fast #13288

Merged
merged 9 commits into from
Apr 7, 2014
Prev Previous commit
Next Next commit
rmake: Fix a test on FreeBSD
  • Loading branch information
alexcrichton committed Apr 6, 2014
commit 0d9fd8e2a1f8aa43b4cf66272eaa3cf695bbdcd9
8 changes: 7 additions & 1 deletion src/test/run-make/dep-info/Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
-include ../tools.mk

ifneq ($(shell uname),FreeBSD)
all:
$(RUSTC) --dep-info --crate-type=lib lib.rs
sleep 1
sleep 2
touch foo.rs
-rm -f $(TMPDIR)/done
$(MAKE) -drf Makefile.foo
sleep 2
rm $(TMPDIR)/done
pwd
$(MAKE) -drf Makefile.foo
rm $(TMPDIR)/done && exit 1 || exit 0
else
all:

endif
7 changes: 6 additions & 1 deletion src/test/run-make/lto-smoke-c/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
-include ../tools.mk

ifneq ($(shell uname),Darwin)
ifeq ($(shell uname),Darwin)
else
ifeq ($(shell uname),FreeBSD)
EXTRAFLAGS := -lm -lpthread -lgcc_s
else
EXTRAFLAGS := -lm -lrt -ldl -lpthread
endif
endif

# Apparently older versions of GCC segfault if -g is passed...
CC := $(CC:-g=)
Expand Down