[PATCH] D119322: test-release.sh: Remove test-suite from LLVM_ENABLE_PROJECTS
Diana Picus via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 9 01:30:02 PST 2022
rovka created this revision.
rovka added reviewers: tstellar, hans.
rovka requested review of this revision.
Herald added a project: LLVM.
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.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D119322
Files:
llvm/utils/release/test-release.sh
Index: llvm/utils/release/test-release.sh
===================================================================
--- llvm/utils/release/test-release.sh
+++ llvm/utils/release/test-release.sh
@@ -249,11 +249,6 @@
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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119322.407083.patch
Type: text/x-patch
Size: 418 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220209/20cf2601/attachment.bin>
More information about the llvm-commits
mailing list