From 15934b86a1384067420f3ba3d442544af5139116 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Tue, 13 Sep 2016 22:25:41 +0000 Subject: [PATCH] [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. llvm-svn: 281409 --- compiler-rt/test/asan/CMakeLists.txt | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/compiler-rt/test/asan/CMakeLists.txt b/compiler-rt/test/asan/CMakeLists.txt index 82ec8ff..cb32cfb 100644 --- a/compiler-rt/test/asan/CMakeLists.txt +++ b/compiler-rt/test/asan/CMakeLists.txt @@ -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) -- 2.7.4