[compiler-rt] r292236 - Revert r292232.
Kuba Mracek via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 17 10:06:07 PST 2017
Author: kuba.brecka
Date: Tue Jan 17 12:06:07 2017
New Revision: 292236
URL: http://llvm.org/viewvc/llvm-project?rev=292236&view=rev
Log:
Revert r292232.
Modified:
compiler-rt/trunk/test/asan/Unit/lit.site.cfg.in
compiler-rt/trunk/test/asan/lit.cfg
compiler-rt/trunk/test/tsan/Unit/lit.site.cfg.in
compiler-rt/trunk/test/tsan/lit.cfg
compiler-rt/trunk/unittests/lit.common.unit.cfg
Modified: compiler-rt/trunk/test/asan/Unit/lit.site.cfg.in
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/Unit/lit.site.cfg.in?rev=292236&r1=292235&r2=292236&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/Unit/lit.site.cfg.in (original)
+++ compiler-rt/trunk/test/asan/Unit/lit.site.cfg.in Tue Jan 17 12:06:07 2017
@@ -27,5 +27,3 @@ config.test_source_root = config.test_ex
# Set LD_LIBRARY_PATH to pick dynamic runtime up properly.
push_ld_library_path(config, config.compiler_rt_libdir)
-
-config.parallelism_group = config.darwin_sanitizer_parallelism_group_func
Modified: compiler-rt/trunk/test/asan/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/lit.cfg?rev=292236&r1=292235&r2=292236&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/lit.cfg (original)
+++ compiler-rt/trunk/test/asan/lit.cfg Tue Jan 17 12:06:07 2017
@@ -241,7 +241,3 @@ else:
# Only run the tests on supported OSs.
if config.host_os not in ['Linux', 'Darwin', 'FreeBSD', 'Windows']:
config.unsupported = True
-
-if config.host_os == 'Darwin':
- if config.target_arch in ["x86_64", "x86_64h"]:
- config.parallelism_group = "darwin-64bit-sanitizer"
Modified: compiler-rt/trunk/test/tsan/Unit/lit.site.cfg.in
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/Unit/lit.site.cfg.in?rev=292236&r1=292235&r2=292236&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/Unit/lit.site.cfg.in (original)
+++ compiler-rt/trunk/test/tsan/Unit/lit.site.cfg.in Tue Jan 17 12:06:07 2017
@@ -11,5 +11,3 @@ config.name = 'ThreadSanitizer-Unit'
# FIXME: De-hardcode this path.
config.test_exec_root = "@COMPILER_RT_BINARY_DIR@/lib/tsan/tests"
config.test_source_root = config.test_exec_root
-
-config.parallelism_group = config.darwin_sanitizer_parallelism_group_func
Modified: compiler-rt/trunk/test/tsan/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/lit.cfg?rev=292236&r1=292235&r2=292236&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/lit.cfg (original)
+++ compiler-rt/trunk/test/tsan/lit.cfg Tue Jan 17 12:06:07 2017
@@ -83,7 +83,3 @@ if config.host_os not in ['FreeBSD', 'Li
# because the test hangs.
if config.target_arch != 'aarch64':
config.available_features.add('stable-runtime')
-
-if config.host_os == 'Darwin':
- if config.target_arch in ["x86_64", "x86_64h"]:
- config.parallelism_group = "darwin-64bit-sanitizer"
Modified: compiler-rt/trunk/unittests/lit.common.unit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/unittests/lit.common.unit.cfg?rev=292236&r1=292235&r2=292236&view=diff
==============================================================================
--- compiler-rt/trunk/unittests/lit.common.unit.cfg (original)
+++ compiler-rt/trunk/unittests/lit.common.unit.cfg Tue Jan 17 12:06:07 2017
@@ -28,10 +28,3 @@ if 'TMP' in os.environ:
config.environment['TMP'] = os.environ['TMP']
if 'TEMP' in os.environ:
config.environment['TEMP'] = os.environ['TEMP']
-
-def darwin_sanitizer_parallelism_group_func(test):
- if test.config.host_os == "Darwin":
- if test.file_path.find("x86_64") != -1:
- return "darwin-64bit-sanitizer"
- return ""
-config.darwin_sanitizer_parallelism_group_func = darwin_sanitizer_parallelism_group_func
More information about the llvm-commits
mailing list