]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/sanitizer-memory/Makefile
Rollup merge of #39602 - estebank:fix-39544, r=eddyb
[rust.git] / src / test / run-make / sanitizer-memory / Makefile
1 -include ../tools.mk
2
3 ifdef SANITIZER_SUPPORT
4 all:
5         $(RUSTC) -g -Z sanitizer=memory -Z print-link-args uninit.rs | grep -q librustc_msan
6         $(TMPDIR)/uninit 2>&1 | grep -q use-of-uninitialized-value
7 else
8 all:
9
10 endif