From commits-return-33576-archive-asf-public=cust-asf.ponee.io@geode.apache.org Thu Dec 12 20:59:16 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id D85DF18061A for ; Thu, 12 Dec 2019 21:59:15 +0100 (CET) Received: (qmail 34036 invoked by uid 500); 12 Dec 2019 20:59:15 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 34027 invoked by uid 99); 12 Dec 2019 20:59:15 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Dec 2019 20:59:15 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 1D2A38D80D; Thu, 12 Dec 2019 20:59:15 +0000 (UTC) Date: Thu, 12 Dec 2019 20:59:15 +0000 To: "commits@geode.apache.org" Subject: [geode-benchmarks] branch develop updated: Exclude failing NoopBenchmark (#121) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157618435506.15620.8689089256222554345@gitbox.apache.org> From: heybales@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode-benchmarks X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: bd2e0008335859ae012f383707a321299006fd02 X-Git-Newrev: c3d3aea914db53b0366dfbd2720e3402f36be53c X-Git-Rev: c3d3aea914db53b0366dfbd2720e3402f36be53c X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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')