[compiler-rt] r178760 - [TSan] Make path to FileCheck configurable
Alexey Samsonov
samsonov at google.com
Thu Apr 4 05:18:13 PDT 2013
Author: samsonov
Date: Thu Apr 4 07:18:12 2013
New Revision: 178760
URL: http://llvm.org/viewvc/llvm-project?rev=178760&view=rev
Log:
[TSan] Make path to FileCheck configurable
Modified:
compiler-rt/trunk/lib/tsan/Makefile.old
Modified: compiler-rt/trunk/lib/tsan/Makefile.old
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/Makefile.old?rev=178760&r1=178759&r2=178760&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/Makefile.old (original)
+++ compiler-rt/trunk/lib/tsan/Makefile.old Thu Apr 4 07:18:12 2013
@@ -3,6 +3,7 @@ LDFLAGS=-ldl -lpthread -pie
CXXFLAGS = -fPIE -fno-rtti -g -Wall -Werror \
-DGTEST_HAS_RTTI=0 -DTSAN_DEBUG=$(DEBUG) -DSANITIZER_DEBUG=$(DEBUG)
CLANG=clang
+FILECHECK=FileCheck
# Silence warnings that Clang produces for gtest code.
# Use -Wno-attributes so that gcc doesn't complain about unknown warning types.
CXXFLAGS += -Wno-attributes
@@ -56,7 +57,7 @@ test: libtsan tsan_test
run: all
(ulimit -s 8192; ./tsan_test)
- CC=$(CLANG) CXX=$(CLANG)++ ./lit_tests/test_output.sh
+ CC=$(CLANG) CXX=$(CLANG)++ FILECHECK=$(FILECHECK) ./lit_tests/test_output.sh
presubmit:
../sanitizer_common/scripts/check_lint.sh
More information about the llvm-commits
mailing list