mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
433da1fc04
They pass fine.
13 lines
339 B
Makefile
13 lines
339 B
Makefile
# ignore-msvc
|
|
|
|
include ../tools.mk
|
|
|
|
all:
|
|
$(RUSTC) depa.rs
|
|
$(RUSTC) depb.rs
|
|
$(RUSTC) depc.rs
|
|
$(RUSTC) empty.rs --cfg bar 2>&1 | $(CGREP) '"-ltesta" "-ltestb" "-ltesta"'
|
|
$(RUSTC) empty.rs 2>&1 | $(CGREP) '"-ltesta"'
|
|
$(RUSTC) empty.rs 2>&1 | $(CGREP) -v '"-ltestb"'
|
|
$(RUSTC) empty.rs 2>&1 | $(CGREP) -v '"-ltesta" "-ltesta" "-ltesta"'
|