Skip to content

Commit 8807732

Browse files
author
Mohit K. Bhakkad
committedFeb 19, 2015
[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 llvm-svn: 229833
1 parent c0e912d commit 8807732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎compiler-rt/test/lsan/lit.common.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ config.substitutions.append( ("%clangxx ", build_invocation(clang_cxxflags)) )
4444
config.substitutions.append( ("%clang_lsan ", build_invocation(clang_lsan_cflags)) )
4545
config.substitutions.append( ("%clangxx_lsan ", build_invocation(clang_lsan_cxxflags)) )
4646

47-
# LeakSanitizer tests are currently supported on x86-64 Linux only.
48-
if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64']:
47+
# LeakSanitizer tests are currently supported on x86-64 Linux and mips64 Linux only.
48+
if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64', 'mips64']:
4949
config.unsupported = True
5050

5151
config.suffixes = ['.c', '.cc', '.cpp']

0 commit comments

Comments
 (0)
Please sign in to comment.