Skip to content

Commit 42f5ac5

Browse files
committed
Fix tests that fail on FreeBSD
1 parent b63cee4 commit 42f5ac5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/test/debuginfo/gdb-pretty-struct-and-enums-pre-gdb-7-7.rs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// gdb-pretty-struct-and-enums.rs
1414

1515
// ignore-windows failing on win32 bot
16+
// ignore-freebsd: gdb package too new
1617
// ignore-tidy-linelength
1718
// ignore-lldb
1819
// ignore-android: FIXME(#10381)

src/test/debuginfo/gdb-pretty-struct-and-enums.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// ignore-windows failing on win32 bot
12+
// ignore-freebsd: output doesn't match
1213
// ignore-tidy-linelength
1314
// ignore-lldb
1415
// ignore-android: FIXME(#10381)

src/test/run-make/use-extern-for-plugins/Makefile

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

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

0 commit comments

Comments
 (0)