Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/polly
diff options
context:
space:
mode:
authorEli Friedman <efriedma@quicinc.com>2022-08-24 22:52:17 +0300
committerEli Friedman <efriedma@quicinc.com>2022-08-24 22:55:45 +0300
commit2c29268bfcc84c3b94bcb0aa34b7ef9c9bd9af01 (patch)
tree8397d2ac6576525001c50a7aa8b1ca57f0d02bba /polly
parentbdf1327fea632bf9736924acf59675182b528b23 (diff)
Exclude check-polly-unittests and check-polly-isl from check-all
The unittests are already included in check-polly, so check-all was running them twice. Running them twice causes a race on the output files, which led to intermittent failures on the reverse-iteration buildbot.
Diffstat (limited to 'polly')
-rw-r--r--polly/test/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/polly/test/CMakeLists.txt b/polly/test/CMakeLists.txt
index 91923ef9f039..81cee34a780d 100644
--- a/polly/test/CMakeLists.txt
+++ b/polly/test/CMakeLists.txt
@@ -77,6 +77,7 @@ if (POLLY_GTEST_AVAIL)
add_lit_testsuite(check-polly-unittests "Running polly unit tests only"
${CMAKE_CURRENT_BINARY_DIR}/Unit
PARAMS polly_site_config=${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg
+ EXCLUDE_FROM_CHECK_ALL
DEPENDS PollyUnitTests
)
set_target_properties(check-polly-unittests PROPERTIES FOLDER "Polly")
@@ -90,6 +91,7 @@ if (POLLY_BUNDLED_ISL)
add_lit_testsuite(check-polly-isl "Running isl unit tests only"
${CMAKE_CURRENT_BINARY_DIR}/UnitIsl
PARAMS polly_site_config=${CMAKE_CURRENT_BINARY_DIR}/UnitIsl/lit.site.cfg
+ EXCLUDE_FROM_CHECK_ALL
DEPENDS polly-isl-test
)
set_target_properties(check-polly-isl PROPERTIES FOLDER "Polly")