]> git.proxmox.com Git - rustc.git/blob - src/test/run-make/test-harness/Makefile
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / run-make / test-harness / Makefile
1 -include ../tools.mk
2
3 all:
4 # check that #[ignore(cfg(...))] does the right thing.
5 $(RUSTC) --test test-ignore-cfg.rs --cfg ignorecfg
6 $(call RUN,test-ignore-cfg) | grep 'shouldnotignore ... ok'
7 $(call RUN,test-ignore-cfg) | grep 'shouldignore ... ignored'
8 $(call RUN,test-ignore-cfg --quiet) | grep "^i\.$$"
9 $(call RUN,test-ignore-cfg --quiet) | grep -v 'should'