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

Commit

Permalink
Fixing missed test failures in the Gradle tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbsox committed Apr 5, 2019
1 parent 95bd763 commit ffac928
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions boost-gradle/gradle-test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
./gradlew install check -Ptest.exclude="**/*15*" -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
export testExitCode=0

./gradlew clean install check -Ptest.exclude="**/*15*" -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
if [ $? ]; then
testExitCode=1
fi

ls build/test-results/test/ >> out.txt
./gradlew wrapper --gradle-version 4.10
./gradlew install check -Ptest.include="**/*15*" -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon

./gradlew clean install check -Ptest.include="**/*15*" -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
if [ $? ]; then
testExitCode=1
fi

ls build/test-results/test/ >> out.txt
cat out.txt

exit $testExitCode

0 comments on commit ffac928

Please sign in to comment.