[compiler-rt] r355128 - [Sanitizer] lit test config: Respect existing parallelism_group

Julian Lettner via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 28 11:26:53 PST 2019


Author: yln
Date: Thu Feb 28 11:26:53 2019
New Revision: 355128

URL: http://llvm.org/viewvc/llvm-project?rev=355128&view=rev
Log:
[Sanitizer] lit test config: Respect existing parallelism_group

Modified:
    compiler-rt/trunk/test/asan/lit.cfg
    compiler-rt/trunk/test/fuzzer/lit.cfg
    compiler-rt/trunk/test/sanitizer_common/lit.common.cfg
    compiler-rt/trunk/test/tsan/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=355128&r1=355127&r2=355128&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/lit.cfg (original)
+++ compiler-rt/trunk/test/asan/lit.cfg Thu Feb 28 11:26:53 2019
@@ -220,4 +220,5 @@ else:
 if config.host_os not in ['Linux', 'Darwin', 'FreeBSD', 'SunOS', 'Windows', 'NetBSD']:
   config.unsupported = True
 
-config.parallelism_group = 'shadow-memory'
+if not config.parallelism_group:
+  config.parallelism_group = 'shadow-memory'

Modified: compiler-rt/trunk/test/fuzzer/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/lit.cfg?rev=355128&r1=355127&r2=355128&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/lit.cfg (original)
+++ compiler-rt/trunk/test/fuzzer/lit.cfg Thu Feb 28 11:26:53 2019
@@ -114,4 +114,5 @@ if default_asan_opts_str:
 config.substitutions.append(('%env_asan_opts=',
                              'env ASAN_OPTIONS=' + default_asan_opts_str))
 
-config.parallelism_group = 'shadow-memory'
+if not config.parallelism_group:
+  config.parallelism_group = 'shadow-memory'

Modified: compiler-rt/trunk/test/sanitizer_common/lit.common.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/lit.common.cfg?rev=355128&r1=355127&r2=355128&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/lit.common.cfg (original)
+++ compiler-rt/trunk/test/sanitizer_common/lit.common.cfg Thu Feb 28 11:26:53 2019
@@ -71,4 +71,5 @@ config.suffixes = ['.c', '.cc', '.cpp']
 if config.host_os not in ['Linux', 'Darwin', 'NetBSD', 'FreeBSD']:
   config.unsupported = True
 
-config.parallelism_group = 'shadow-memory'
+if not config.parallelism_group:
+  config.parallelism_group = 'shadow-memory'

Modified: compiler-rt/trunk/test/tsan/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/lit.cfg?rev=355128&r1=355127&r2=355128&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/lit.cfg (original)
+++ compiler-rt/trunk/test/tsan/lit.cfg Thu Feb 28 11:26:53 2019
@@ -86,4 +86,5 @@ if config.host_os not in ['FreeBSD', 'Li
 if config.android:
   config.unsupported = True
 
-config.parallelism_group = 'shadow-memory'
+if not config.parallelism_group:
+  config.parallelism_group = 'shadow-memory'




More information about the llvm-commits mailing list