diff options
author | Christine Pleasent | 2015-01-12 19:44:03 +0000 |
---|---|---|
committer | Christine Pleasent | 2015-01-12 19:44:03 +0000 |
commit | 9661a61cc32d5a3077a17d63d61bb28a5933d656 (patch) | |
tree | 8081d157b79481dbb9a251d2171723e94ad12dec | |
parent | af96acda6d1b0fac592109ade6e7c89751d53b89 (diff) | |
download | org.eclipse.osee-9661a61cc32d5a3077a17d63d61bb28a5933d656.tar.gz org.eclipse.osee-9661a61cc32d5a3077a17d63d61bb28a5933d656.tar.xz org.eclipse.osee-9661a61cc32d5a3077a17d63d61bb28a5933d656.zip |
bug[ats_ATS103446]: Abort on fail option in test manager0.19.0.v201501151808_REL
Signed-off-by: Christine Pleasent <christine.pleasent@boeing.com>
-rw-r--r-- | plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/command/RunTests.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/command/RunTests.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/command/RunTests.java index 76d35542ea6..0e81b806451 100644 --- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/command/RunTests.java +++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/command/RunTests.java @@ -90,7 +90,10 @@ public class RunTests implements ITestServerCommand, Serializable { boolean batchAbortFailMode = global.getBoolean(RunTestsKeys.batchFailAbortMode.name()); if(batchAbortFailMode){ System.setProperty("ote.abort.on.fail", "true"); - } + } + else { + System.clearProperty("ote.abort.on.fail"); + } //Override the command line option only if batch pause has been selected in TestManager boolean batchPauseFailMode = global.getBoolean(RunTestsKeys.batchFailPauseMode.name()); |