[compiler-rt] r229833 - [LSan][MIPS64] Enable LSan testing for mips64/mips64el
Mohit K. Bhakkad
mohit.bhakkad at imgtec.com
Thu Feb 19 01:14:44 PST 2015
Author: mohit.bhakkad
Date: Thu Feb 19 03:14:43 2015
New Revision: 229833
URL: http://llvm.org/viewvc/llvm-project?rev=229833&view=rev
Log:
[LSan][MIPS64] Enable LSan testing for mips64/mips64el
Patch by Sagar Thakur
Reviewers: petarj, earthdok, kcc.
Subscribers: samsonov, dsanders, mohit.bhakkad, Anand.Takale, llvm-commits.
Differential Revision: http://reviews.llvm.org/D7124
Modified:
compiler-rt/trunk/test/lsan/lit.common.cfg
Modified: compiler-rt/trunk/test/lsan/lit.common.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/lsan/lit.common.cfg?rev=229833&r1=229832&r2=229833&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/lit.common.cfg (original)
+++ compiler-rt/trunk/test/lsan/lit.common.cfg Thu Feb 19 03:14:43 2015
@@ -44,8 +44,8 @@ config.substitutions.append( ("%clangxx
config.substitutions.append( ("%clang_lsan ", build_invocation(clang_lsan_cflags)) )
config.substitutions.append( ("%clangxx_lsan ", build_invocation(clang_lsan_cxxflags)) )
-# LeakSanitizer tests are currently supported on x86-64 Linux only.
-if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64']:
+# LeakSanitizer tests are currently supported on x86-64 Linux and mips64 Linux only.
+if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64', 'mips64']:
config.unsupported = True
config.suffixes = ['.c', '.cc', '.cpp']
More information about the llvm-commits
mailing list