1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Exclude test-suite from CMake builds in test-release.sh

It's broken. In 3.7 there wasn't a CMake build for test-suite at all,
so we're not losing something we had before.

llvm-svn: 257791
This commit is contained in:
Hans Wennborg 2016-01-14 19:21:14 +00:00
parent fc79a7dd17
commit d2870a5f7c

View File

@ -159,6 +159,12 @@ while [ $# -gt 0 ]; do
shift
done
if [ "$use_autoconf" = "no" ]; then
# See llvm.org/PR26146.
echo Skipping test-suite when using CMake.
do_test_suite="no"
fi
# Check required arguments.
if [ -z "$Release" ]; then
echo "error: no release number specified"