From 7151b5ad7821dc7c1990af0bd2850fcbcbe100e7 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Sun, 10 Apr 2016 22:17:27 -0500 Subject: [PATCH] rustc: add basic test for --print target-spec This is a very basic test of the --print target-spec feature. Signed-off-by: Doug Goldstein --- src/test/run-make/target-specs/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/run-make/target-specs/Makefile b/src/test/run-make/target-specs/Makefile index 0c9a0169c1ab..6b58ad7b6dff 100644 --- a/src/test/run-make/target-specs/Makefile +++ b/src/test/run-make/target-specs/Makefile @@ -6,3 +6,4 @@ all: $(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 + $(RUSTC) -Z unstable-options --target=my-awesome-platform.json --print target-spec-json > $(TMPDIR)/test-platform.json && $(RUSTC) -Z unstable-options --target=$(TMPDIR)/test-platform.json --print target-spec-json | diff -q $(TMPDIR)/test-platform.json -