You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2021/04/26 22:16:50 UTC

[geode-benchmarks] branch develop updated: GEODE-9176: Pass TEST_HOSTS with benchmark. prefix

This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
     new 972ad2e  GEODE-9176: Pass TEST_HOSTS with benchmark. prefix
972ad2e is described below

commit 972ad2e577e51702aab49f8563af4c7b00d9fa2d
Author: Dan Smith <da...@vmware.com>
AuthorDate: Mon Apr 26 15:12:45 2021 -0700

    GEODE-9176: Pass TEST_HOSTS with benchmark. prefix
    
    It looks like this property was getting passed through with the wrong prefix.
    Setting the system property to be benchmark.TEST_HOSTS
---
 geode-benchmarks/build.gradle | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/geode-benchmarks/build.gradle b/geode-benchmarks/build.gradle
index 3406f80..e431946 100644
--- a/geode-benchmarks/build.gradle
+++ b/geode-benchmarks/build.gradle
@@ -102,9 +102,10 @@ task benchmark(type: Test) {
   systemProperty 'org.slf4j.simpleLogger.dateTimeFormat', 'yyyy-MM-dd HH:mm:ss.SSS'
   systemProperty 'org.slf4j.simpleLogger.showThreadName', 'false'
   systemProperty 'org.slf4j.simpleLogger.showShortLogName', 'true'
-  systemProperty 'TEST_HOSTS', project.findProperty('hosts')
-  systemProperty 'TEST_METADATA', project.findProperty('metadata')
+  systemProperty 'benchmark.TEST_HOSTS', project.findProperty('hosts')
+  systemProperty 'benchmark.TEST_METADATA', project.findProperty('metadata')
   systemProperty 'OUTPUT_DIR', outputDir
+  systemProperty 'benchmark.OUTPUT_DIR', outputDir
 
   //Set all project properties starting with "benchmark." as system properties in the test
   //JVM