[compiler-rt] r218042 - Enable Asan lit tests on FreeBSD.
Viktor Kutuzov
vkutuzov at accesssoftek.com
Thu Sep 18 03:04:07 PDT 2014
Author: vkutuzov
Date: Thu Sep 18 05:04:07 2014
New Revision: 218042
URL: http://llvm.org/viewvc/llvm-project?rev=218042&view=rev
Log:
Enable Asan lit tests on FreeBSD.
Differential Revision: http://reviews.llvm.org/D5375
Modified:
compiler-rt/trunk/test/asan/lit.cfg
Modified: compiler-rt/trunk/test/asan/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/lit.cfg?rev=218042&r1=218041&r2=218042&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/lit.cfg (original)
+++ compiler-rt/trunk/test/asan/lit.cfg Thu Sep 18 05:04:07 2014
@@ -141,6 +141,7 @@ config.suffixes = ['.c', '.cc', '.cpp']
if config.host_os == 'Darwin':
config.suffixes.append('.mm')
-# AddressSanitizer tests are currently supported on Linux and Darwin only.
-if config.host_os not in ['Linux', 'Darwin']:
+# AddressSanitizer tests are currently supported on Linux, Darwin and
+# FreeBSD only.
+if config.host_os not in ['Linux', 'Darwin', 'FreeBSD']:
config.unsupported = True
More information about the llvm-commits
mailing list