You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dl...@apache.org on 2016/12/23 20:02:15 UTC

incubator-edgent git commit: [Edgent-310] gradle test task needs to pass -D args

Repository: incubator-edgent
Updated Branches:
  refs/heads/master a9d6fdefb -> c7cbe49cd


[Edgent-310] gradle test task needs to pass -D args

Project: http://git-wip-us.apache.org/repos/asf/incubator-edgent/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-edgent/commit/c7cbe49c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-edgent/tree/c7cbe49c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-edgent/diff/c7cbe49c

Branch: refs/heads/master
Commit: c7cbe49cda1ed50b64dae7ad9b7d436c5a96c936
Parents: a9d6fde
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Fri Dec 23 14:32:20 2016 -0500
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Fri Dec 23 14:32:20 2016 -0500

----------------------------------------------------------------------
 build.gradle | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/c7cbe49c/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index dfa253b..5cd08fb 100644
--- a/build.gradle
+++ b/build.gradle
@@ -508,6 +508,10 @@ subprojects {
     systemProperty 'edgent.test.top.dir.file.path', rootProject.projectDir
     systemProperty 'edgent.test.root.dir', rootProject.projectDir
     systemProperty 'edgent.build.ci', System.properties['edgent.build.ci']
+    
+    // pass along any org.apache.edgent system props
+    systemProperties System.properties.findAll { it.key.startsWith("org.apache.edgent") }
+    
     testLogging {
       exceptionFormat 'full'
       showStandardStreams = System.properties['edgent.test.showOutput'] != null