[llvm-branch-commits] [llvm] e77317a - test-release.sh: Remove test-suite from LLVM_ENABLE_PROJECTS
Diana Picus via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Feb 10 00:32:39 PST 2022
Author: Diana Picus
Date: 2022-02-10T09:31:38+01:00
New Revision: e77317a786b0c6d4489de0e6679128baf363498e
URL: https://github.com/llvm/llvm-project/commit/e77317a786b0c6d4489de0e6679128baf363498e
DIFF: https://github.com/llvm/llvm-project/commit/e77317a786b0c6d4489de0e6679128baf363498e.diff
LOG: test-release.sh: Remove test-suite from LLVM_ENABLE_PROJECTS
I think this was just being ignored before, but now it crashes because
we're checking if the projects that we're trying to enable are valid.
There is no test-suite project (it's a separate repo with separate
handling), so we should never try to enable it.
Differential Revision: https://reviews.llvm.org/D119322
Added:
Modified:
llvm/utils/release/test-release.sh
Removed:
################################################################################
diff --git a/llvm/utils/release/test-release.sh b/llvm/utils/release/test-release.sh
index d6fb5a972e633..41c3f3af14221 100755
--- a/llvm/utils/release/test-release.sh
+++ b/llvm/utils/release/test-release.sh
@@ -249,11 +249,6 @@ if [ $do_libs = "yes" ]; then
runtimes="$runtimes libunwind"
fi
fi
-case $do_test_suite in
- yes|export-only)
- projects="$projects test-suite"
- ;;
-esac
if [ $do_openmp = "yes" ]; then
projects="$projects openmp"
fi
More information about the llvm-branch-commits
mailing list