[compiler-rt] r364877 - Remove scudo standalone tests from check-all
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 1 16:29:59 PDT 2019
Author: rnk
Date: Mon Jul 1 16:29:59 2019
New Revision: 364877
URL: http://llvm.org/viewvc/llvm-project?rev=364877&view=rev
Log:
Remove scudo standalone tests from check-all
They appear to fail to link in various 32-bit configurations for unknown
reasons. This change was already reverted, and it seems preferable to me
to make forward progress and remove this once the problems are fully
understood.
Modified:
compiler-rt/trunk/lib/scudo/standalone/tests/CMakeLists.txt
Modified: compiler-rt/trunk/lib/scudo/standalone/tests/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/scudo/standalone/tests/CMakeLists.txt?rev=364877&r1=364876&r2=364877&view=diff
==============================================================================
--- compiler-rt/trunk/lib/scudo/standalone/tests/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/scudo/standalone/tests/CMakeLists.txt Mon Jul 1 16:29:59 2019
@@ -76,6 +76,8 @@ set(SCUDO_UNIT_TEST_SOURCES
vector_test.cc
scudo_unit_test_main.cc)
+set(EXCLUDE_FROM_ALL ON)
+
add_scudo_unittest(ScudoUnitTest
SOURCES ${SCUDO_UNIT_TEST_SOURCES})
More information about the llvm-commits
mailing list