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 8b0cfbd GEODE-6141: Fork benchmarks for every run
8b0cfbd is described below
commit 8b0cfbdeed5636c041275b631dddfb3b9c2e1edb
Author: Dan Smith <[email protected]>
AuthorDate: Fri Dec 7 09:18:30 2018 -0800
GEODE-6141: Fork benchmarks for every run
---
geode-benchmarks/build.gradle | 2 ++
1 file changed, 2 insertions(+)
diff --git a/geode-benchmarks/build.gradle b/geode-benchmarks/build.gradle
index 04698b2..492f971 100644
--- a/geode-benchmarks/build.gradle
+++ b/geode-benchmarks/build.gradle
@@ -43,6 +43,8 @@ task benchmark(type: Test) {
exceptionFormat = 'full'
}
+ forkEvery 1
+
def outputDir = project.hasProperty('outputDir') ?
project.findProperty('outputDir') : new File(project.buildDir,
"benchmarks").getAbsolutePath();
systemProperty 'TEST_HOSTS', project.findProperty('hosts');