This is an automated email from the ASF dual-hosted git repository.
heybales 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 c3d3aea Exclude failing NoopBenchmark (#121)
c3d3aea is described below
commit c3d3aea914db53b0366dfbd2720e3402f36be53c
Author: Helena Bales <[email protected]>
AuthorDate: Thu Dec 12 12:59:05 2019 -0800
Exclude failing NoopBenchmark (#121)
NoopBenchmark has some fundamental issues that make it fail constantly.
In recent testing, it passed significantly more often that it has been
in Apache Geode CI, so it needs to be excluded until it can be fixed.
---
geode-benchmarks/build.gradle | 2 ++
1 file changed, 2 insertions(+)
diff --git a/geode-benchmarks/build.gradle b/geode-benchmarks/build.gradle
index 42cafe9..847c4c9 100644
--- a/geode-benchmarks/build.gradle
+++ b/geode-benchmarks/build.gradle
@@ -63,6 +63,8 @@ task benchmark(type: Test) {
useJUnitPlatform()
testLogging { exceptionFormat = 'full' }
+ exclude "**/NoopBenchmark.class"
+
forkEvery 1
systemProperty 'TEST_HOSTS', project.findProperty('hosts')