aboutsummaryrefslogtreecommitdiff
path: root/bigtop-test-framework
diff options
context:
space:
mode:
authorjayunit100 <jay@apache.org>2014-11-13 00:15:31 -0500
committerjayunit100 <jay@apache.org>2014-11-14 08:37:21 -0500
commit0bbfd8bd561f2ab39b300c0a549f3cc954fab0f6 (patch)
tree4ca546cfd16e4fec1227edc2242ee0e656ac3b76 /bigtop-test-framework
parentd6c5f77b459e05bdc8db149964040abcbb9a17d6 (diff)
BIGTOP-1524. FailureExecutor breaks smoke tests : Smoke tests should run from source.
Diffstat (limited to 'bigtop-test-framework')
-rw-r--r--bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy
index 6bc1ca3b..3d11507f 100644
--- a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy
+++ b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/failures/FailureVars.groovy
@@ -14,8 +14,8 @@ public class FailureVars {
private final String CRON_SERVICE;
private final int SLEEP_TIME = 100;
private static FailureVars instance = null;
- private String propertyFile = "/vars.properties"
- private Boolean useProperties = System.getProperty("useProperties", Boolean.FALSE.toString());
+ private String propertyFile = "/failureVars.properties"
+ private Boolean useProperties = Boolean.parseBoolean(System.getProperty("useFailureProperties", "false"));
private String testHost;
private String testRemoteHost;
private String runFailures;