[compiler-rt] r281409 - [asan] Remove lit -j5 flag for android tests.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 13 15:25:41 PDT 2016


Author: eugenis
Date: Tue Sep 13 17:25:41 2016
New Revision: 281409

URL: http://llvm.org/viewvc/llvm-project?rev=281409&view=rev
Log:
[asan] Remove lit -j5 flag for android tests.

It makes the tests extremely slow due to high latency of the test launcher.
The main reason for -j5 was high memory usage with handle_abort=1, which
is now disabled in the test runner.

Modified:
    compiler-rt/trunk/test/asan/CMakeLists.txt

Modified: compiler-rt/trunk/test/asan/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/CMakeLists.txt?rev=281409&r1=281408&r2=281409&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/CMakeLists.txt (original)
+++ compiler-rt/trunk/test/asan/CMakeLists.txt Tue Sep 13 17:25:41 2016
@@ -100,15 +100,9 @@ if(COMPILER_RT_INCLUDE_TESTS)
   endif()
 endif()
 
-set(LIT_ARGS)
-if(ANDROID)
-  set(LIT_ARGS -j5)
-endif()
-
 add_lit_testsuite(check-asan "Running the AddressSanitizer tests"
   ${ASAN_TESTSUITES}
-  DEPENDS ${ASAN_TEST_DEPS}
-  ARGS ${LIT_ARGS})
+  DEPENDS ${ASAN_TEST_DEPS})
 set_target_properties(check-asan PROPERTIES FOLDER "Compiler-RT Misc")
 
 if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)




More information about the llvm-commits mailing list