Fix tests that fail on FreeBSD

This commit is contained in:
Will 2015-02-15 17:18:55 +09:00
parent b63cee4a11
commit 42f5ac568a
3 changed files with 4 additions and 2 deletions

View File

@ -13,6 +13,7 @@
// gdb-pretty-struct-and-enums.rs
// ignore-windows failing on win32 bot
// ignore-freebsd: gdb package too new
// ignore-tidy-linelength
// ignore-lldb
// ignore-android: FIXME(#10381)

View File

@ -9,6 +9,7 @@
// except according to those terms.
// ignore-windows failing on win32 bot
// ignore-freebsd: output doesn't match
// ignore-tidy-linelength
// ignore-lldb
// ignore-android: FIXME(#10381)

View File

@ -1,6 +1,6 @@
-include ../tools.mk
ifneq ($(UNAME),OpenBSD)
ifneq ($(findstring BSD,$(UNAME)),BSD)
HOST := $(shell $(RUSTC) -vV | grep 'host:' | sed 's/host: //')
ifeq ($(findstring i686,$(HOST)),i686)
TARGET := $(subst i686,x86_64,$(HOST))
@ -13,6 +13,6 @@ all:
$(RUSTC) bar.rs -C extra-filename=-targ --target $(TARGET)
$(RUSTC) baz.rs --extern a=$(TMPDIR)/liba-targ.rlib --target $(TARGET)
else
# OpenBSD support only x86_64 architecture for now
# FreeBSD & OpenBSD support only x86_64 architecture for now
all:
endif