You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by co...@apache.org on 2015/12/10 19:37:34 UTC

[3/3] bigtop git commit: BIGTOP-2173. smoke-tests need to pass-through system properties

BIGTOP-2173. smoke-tests need to pass-through system properties


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/3e826b62
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/3e826b62
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/3e826b62

Branch: refs/heads/master
Commit: 3e826b6297b5780cb0ba342c6ef79dd303d2594c
Parents: 74ff3e9
Author: Konstantin Boudnik <co...@boudnik.org>
Authored: Wed Dec 9 17:33:22 2015 -0800
Committer: Konstantin Boudnik <co...@apache.org>
Committed: Thu Dec 10 10:37:01 2015 -0800

----------------------------------------------------------------------
 bigtop-tests/smoke-tests/build.gradle | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/3e826b62/bigtop-tests/smoke-tests/build.gradle
----------------------------------------------------------------------
diff --git a/bigtop-tests/smoke-tests/build.gradle b/bigtop-tests/smoke-tests/build.gradle
index edf0d56..6afe1e4 100644
--- a/bigtop-tests/smoke-tests/build.gradle
+++ b/bigtop-tests/smoke-tests/build.gradle
@@ -73,6 +73,10 @@ subprojects {
   checkEnv(["JAVA_HOME","ITEST"])
   ext.itestVersion = System.getenv("ITEST")
 
+  // Let's make sure all system Properties are passed into the forked test JVM
+  tasks.withType(Test) {
+    systemProperties = System.getProperties()
+  }
   test.dependsOn compileGroovy
   compileGroovy.dependsOn clean
 }