[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
This commit is contained in:
Evgeniy Stepanov 2016-09-13 22:25:41 +00:00
parent 003bb09e78
commit 15934b86a1
1 changed files with 1 additions and 7 deletions

View File

@ -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)