Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit ffac928

Browse files
committed
Fixing missed test failures in the Gradle tests
1 parent 95bd763 commit ffac928

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

boost-gradle/gradle-test.sh

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
./gradlew install check -Ptest.exclude="**/*15*" -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
1+
export testExitCode=0
2+
3+
./gradlew clean install check -Ptest.exclude="**/*15*" -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
4+
if [ $? ]; then
5+
testExitCode=1
6+
fi
7+
28
ls build/test-results/test/ >> out.txt
39
./gradlew wrapper --gradle-version 4.10
4-
./gradlew install check -Ptest.include="**/*15*" -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
10+
11+
./gradlew clean install check -Ptest.include="**/*15*" -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
12+
if [ $? ]; then
13+
testExitCode=1
14+
fi
15+
516
ls build/test-results/test/ >> out.txt
617
cat out.txt
18+
19+
exit $testExitCode

0 commit comments

Comments
 (0)