GP-0 experiment with test failure setting

This commit is contained in:
ghidra1 2021-03-05 18:20:15 -05:00
parent cbff28bf40
commit c905c203f0

View file

@ -125,7 +125,12 @@ def initTestJVM(Task task, String rootDirName) {
mkdir testOutputDir
}
// If false, testing will halt when an error is found.
task.ignoreFailures true
// TODO: test.java provides test task for nightly jUnits - setting this
// here can cause sub-project builds to proceed even when tests fail.
// If test report not generated that task could be changed to always
// run even on failure (e.g., options.failOnError(false) )
// task.ignoreFailures true
task.failFast false
// If false, then tests are re-run every time, even if no code has changed.
task.outputs.upToDateWhen {false}