summary refs log tree commit diff
path: root/src/test/run-make/sanitizer-memory/Makefile
blob: 7502ef0e7a7b750467ecde8e32e013b21d87557d (plain)
1
2
3
4
5
6
7
8
9
10
-include ../tools.mk

all:
ifeq ($(TARGET),x86_64-unknown-linux-gnu)
ifdef SANITIZER_SUPPORT
	$(RUSTC) -g -Z sanitizer=memory -Z print-link-args uninit.rs | grep -q librustc_msan
	$(TMPDIR)/uninit 2>&1 | grep -q use-of-uninitialized-value
endif
endif