]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/sanitizer-thread/Makefile
Rollup merge of #39604 - est31:i128_tests, r=alexcrichton
[rust.git] / src / test / run-make / sanitizer-thread / Makefile
1 -include ../tools.mk
2
3 ifdef SANITIZER_SUPPORT
4 all:
5         $(RUSTC) -g -Z sanitizer=thread -Z print-link-args racy.rs | grep -q librustc_tsan
6         $(TMPDIR)/racy 2>&1 | grep -q 'data race'
7 else
8 all:
9
10 endif