adapt run-make test suite for openbsd
- c-link-to-rust-staticlib: use EXTRACFLAGS defined by tools.mk for choose the good libraries to link to. - no-stack-check: disabled for openbsd (no segmented stacks here) - symbols-are-reasonable: use portable grep pattern - target-specs: use POSIX form for options when invoking grep - use-extern-for-plugins: disable as OpenBSD only support x86_64 for now
This commit is contained in:
parent
f16de18db4
commit
8fb426469a
@ -1,9 +1,7 @@
|
||||
-include ../tools.mk
|
||||
|
||||
ifndef IS_WINDOWS
|
||||
ifneq ($(shell uname),Darwin)
|
||||
EXTRAFLAGS := -lm -lrt -ldl -lpthread
|
||||
endif
|
||||
EXTRAFLAGS := $(EXTRACFLAGS)
|
||||
endif
|
||||
|
||||
# FIXME: ignore freebsd
|
||||
|
@ -1,6 +1,7 @@
|
||||
-include ../tools.mk
|
||||
|
||||
ifndef IS_WINDOWS
|
||||
ifneq ($(UNAME),OpenBSD)
|
||||
all:
|
||||
$(RUSTC) -O --emit asm attr.rs
|
||||
! grep -q morestack $(TMPDIR)/attr.s
|
||||
@ -9,6 +10,10 @@ all:
|
||||
$(RUSTC) -O --emit asm -C no-stack-check flag.rs
|
||||
! grep -q morestack $(TMPDIR)/flag.s
|
||||
else
|
||||
# On OpenBSD, morestack isn't used as the segmented stacks are disabled
|
||||
all:
|
||||
endif
|
||||
else
|
||||
# On Windows we use __chkstk and it only appears in functions with large allocations,
|
||||
# so this test wouldn't be reliable.
|
||||
all:
|
||||
|
@ -10,6 +10,6 @@ OUT=$(TMPDIR)/lib.s
|
||||
all:
|
||||
$(RUSTC) lib.rs --emit=asm --crate-type=staticlib
|
||||
# just check for symbol declarations with the names we're expecting.
|
||||
grep 'str[0-9]\+:' $(OUT)
|
||||
grep 'binary[0-9]\+:' $(OUT)
|
||||
grep 'vtable[0-9]\+' $(OUT)
|
||||
grep 'str[0-9][0-9]*:' $(OUT)
|
||||
grep 'binary[0-9][0-9]*:' $(OUT)
|
||||
grep 'vtable[0-9][0-9]*' $(OUT)
|
||||
|
@ -1,11 +1,11 @@
|
||||
-include ../tools.mk
|
||||
all:
|
||||
$(RUSTC) foo.rs --target=my-awesome-platform.json --crate-type=lib --emit=asm
|
||||
grep --quiet --invert-match morestack < $(TMPDIR)/foo.s
|
||||
grep -q -v morestack < $(TMPDIR)/foo.s
|
||||
$(RUSTC) foo.rs --target=my-invalid-platform.json 2>&1 | grep --quiet "Error loading target specification"
|
||||
$(RUSTC) foo.rs --target=my-incomplete-platform.json 2>&1 | grep 'Field llvm-target'
|
||||
RUST_TARGET_PATH=. $(RUSTC) foo.rs --target=my-awesome-platform --crate-type=lib --emit=asm
|
||||
RUST_TARGET_PATH=. $(RUSTC) foo.rs --target=x86_64-unknown-linux-gnu --crate-type=lib --emit=asm
|
||||
# The built-in target *should* override the one we have here, and thus we
|
||||
# should have morestack
|
||||
grep --quiet morestack < $(TMPDIR)/foo.s
|
||||
grep -q morestack < $(TMPDIR)/foo.s
|
||||
|
@ -1,5 +1,6 @@
|
||||
-include ../tools.mk
|
||||
|
||||
ifneq ($(UNAME),OpenBSD)
|
||||
HOST := $(shell $(RUSTC) -vV | grep 'host:' | sed 's/host: //')
|
||||
ifeq ($(findstring i686,$(HOST)),i686)
|
||||
TARGET := $(subst i686,x86_64,$(HOST))
|
||||
@ -11,3 +12,7 @@ all:
|
||||
$(RUSTC) foo.rs -C extra-filename=-host
|
||||
$(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
|
||||
all:
|
||||
endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user