forked from OSchip/llvm-project
[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:
parent
003bb09e78
commit
15934b86a1
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue