This is an automated email from the ASF dual-hosted git repository.
heybales pushed a commit to branch GEODE-7554
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git
The following commit(s) were added to refs/heads/GEODE-7554 by this push:
new 9619a65 delete the extra Noop benchmarks
9619a65 is described below
commit 9619a654379333e264ef86a2e61d77bde99c0557
Author: Helena A. Bales <[email protected]>
AuthorDate: Fri Dec 6 12:48:23 2019 -0800
delete the extra Noop benchmarks
---
.../geode/benchmark/tests/NoopBenchmark1.java | 51 ----------------------
.../geode/benchmark/tests/NoopBenchmark2.java | 51 ----------------------
.../geode/benchmark/tests/NoopBenchmark3.java | 51 ----------------------
.../geode/benchmark/tests/NoopBenchmark4.java | 51 ----------------------
.../geode/benchmark/tests/NoopBenchmark5.java | 51 ----------------------
.../geode/benchmark/tests/NoopBenchmark6.java | 51 ----------------------
.../geode/benchmark/tests/NoopBenchmark7.java | 51 ----------------------
7 files changed, 357 deletions(-)
diff --git
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark1.java
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark1.java
deleted file mode 100644
index d7d44b3..0000000
---
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark1.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.geode.benchmark.tests;
-
-
-import static
org.apache.geode.benchmark.topology.ClientServerTopology.Roles.CLIENT;
-
-import org.junit.jupiter.api.Test;
-
-import org.apache.geode.benchmark.tasks.NoopTask;
-import org.apache.geode.benchmark.topology.ClientServerTopology;
-import org.apache.geode.perftest.PerformanceTest;
-import org.apache.geode.perftest.TestConfig;
-import org.apache.geode.perftest.TestRunners;
-
-/**
- * Benchmark of gets on a partitioned region.
- */
-public class NoopBenchmark1 implements PerformanceTest {
-
- @Test
- public void run() throws Exception {
- TestRunners.defaultRunner().runTest(this);
- }
-
- public NoopBenchmark1() {}
-
- @Override
- public TestConfig configure() {
- TestConfig config = GeodeBenchmark.createConfig();
- ClientServerTopology.configure(config);
- config.workload(new NoopTask(), CLIENT);
- return config;
-
- }
-}
diff --git
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark2.java
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark2.java
deleted file mode 100644
index 06e0bbe..0000000
---
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark2.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.geode.benchmark.tests;
-
-
-import static
org.apache.geode.benchmark.topology.ClientServerTopology.Roles.CLIENT;
-
-import org.junit.jupiter.api.Test;
-
-import org.apache.geode.benchmark.tasks.NoopTask;
-import org.apache.geode.benchmark.topology.ClientServerTopology;
-import org.apache.geode.perftest.PerformanceTest;
-import org.apache.geode.perftest.TestConfig;
-import org.apache.geode.perftest.TestRunners;
-
-/**
- * Benchmark of gets on a partitioned region.
- */
-public class NoopBenchmark2 implements PerformanceTest {
-
- @Test
- public void run() throws Exception {
- TestRunners.defaultRunner().runTest(this);
- }
-
- public NoopBenchmark2() {}
-
- @Override
- public TestConfig configure() {
- TestConfig config = GeodeBenchmark.createConfig();
- ClientServerTopology.configure(config);
- config.workload(new NoopTask(), CLIENT);
- return config;
-
- }
-}
diff --git
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark3.java
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark3.java
deleted file mode 100644
index b23b060..0000000
---
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark3.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.geode.benchmark.tests;
-
-
-import static
org.apache.geode.benchmark.topology.ClientServerTopology.Roles.CLIENT;
-
-import org.junit.jupiter.api.Test;
-
-import org.apache.geode.benchmark.tasks.NoopTask;
-import org.apache.geode.benchmark.topology.ClientServerTopology;
-import org.apache.geode.perftest.PerformanceTest;
-import org.apache.geode.perftest.TestConfig;
-import org.apache.geode.perftest.TestRunners;
-
-/**
- * Benchmark of gets on a partitioned region.
- */
-public class NoopBenchmark3 implements PerformanceTest {
-
- @Test
- public void run() throws Exception {
- TestRunners.defaultRunner().runTest(this);
- }
-
- public NoopBenchmark3() {}
-
- @Override
- public TestConfig configure() {
- TestConfig config = GeodeBenchmark.createConfig();
- ClientServerTopology.configure(config);
- config.workload(new NoopTask(), CLIENT);
- return config;
-
- }
-}
diff --git
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark4.java
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark4.java
deleted file mode 100644
index 5fb7fe2..0000000
---
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark4.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.geode.benchmark.tests;
-
-
-import static
org.apache.geode.benchmark.topology.ClientServerTopology.Roles.CLIENT;
-
-import org.junit.jupiter.api.Test;
-
-import org.apache.geode.benchmark.tasks.NoopTask;
-import org.apache.geode.benchmark.topology.ClientServerTopology;
-import org.apache.geode.perftest.PerformanceTest;
-import org.apache.geode.perftest.TestConfig;
-import org.apache.geode.perftest.TestRunners;
-
-/**
- * Benchmark of gets on a partitioned region.
- */
-public class NoopBenchmark4 implements PerformanceTest {
-
- @Test
- public void run() throws Exception {
- TestRunners.defaultRunner().runTest(this);
- }
-
- public NoopBenchmark4() {}
-
- @Override
- public TestConfig configure() {
- TestConfig config = GeodeBenchmark.createConfig();
- ClientServerTopology.configure(config);
- config.workload(new NoopTask(), CLIENT);
- return config;
-
- }
-}
diff --git
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark5.java
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark5.java
deleted file mode 100644
index ffc0d2f..0000000
---
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark5.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.geode.benchmark.tests;
-
-
-import static
org.apache.geode.benchmark.topology.ClientServerTopology.Roles.CLIENT;
-
-import org.junit.jupiter.api.Test;
-
-import org.apache.geode.benchmark.tasks.NoopTask;
-import org.apache.geode.benchmark.topology.ClientServerTopology;
-import org.apache.geode.perftest.PerformanceTest;
-import org.apache.geode.perftest.TestConfig;
-import org.apache.geode.perftest.TestRunners;
-
-/**
- * Benchmark of gets on a partitioned region.
- */
-public class NoopBenchmark5 implements PerformanceTest {
-
- @Test
- public void run() throws Exception {
- TestRunners.defaultRunner().runTest(this);
- }
-
- public NoopBenchmark5() {}
-
- @Override
- public TestConfig configure() {
- TestConfig config = GeodeBenchmark.createConfig();
- ClientServerTopology.configure(config);
- config.workload(new NoopTask(), CLIENT);
- return config;
-
- }
-}
diff --git
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark6.java
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark6.java
deleted file mode 100644
index 05ce562..0000000
---
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark6.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.geode.benchmark.tests;
-
-
-import static
org.apache.geode.benchmark.topology.ClientServerTopology.Roles.CLIENT;
-
-import org.junit.jupiter.api.Test;
-
-import org.apache.geode.benchmark.tasks.NoopTask;
-import org.apache.geode.benchmark.topology.ClientServerTopology;
-import org.apache.geode.perftest.PerformanceTest;
-import org.apache.geode.perftest.TestConfig;
-import org.apache.geode.perftest.TestRunners;
-
-/**
- * Benchmark of gets on a partitioned region.
- */
-public class NoopBenchmark6 implements PerformanceTest {
-
- @Test
- public void run() throws Exception {
- TestRunners.defaultRunner().runTest(this);
- }
-
- public NoopBenchmark6() {}
-
- @Override
- public TestConfig configure() {
- TestConfig config = GeodeBenchmark.createConfig();
- ClientServerTopology.configure(config);
- config.workload(new NoopTask(), CLIENT);
- return config;
-
- }
-}
diff --git
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark7.java
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark7.java
deleted file mode 100644
index da1d122..0000000
---
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tests/NoopBenchmark7.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.geode.benchmark.tests;
-
-
-import static
org.apache.geode.benchmark.topology.ClientServerTopology.Roles.CLIENT;
-
-import org.junit.jupiter.api.Test;
-
-import org.apache.geode.benchmark.tasks.NoopTask;
-import org.apache.geode.benchmark.topology.ClientServerTopology;
-import org.apache.geode.perftest.PerformanceTest;
-import org.apache.geode.perftest.TestConfig;
-import org.apache.geode.perftest.TestRunners;
-
-/**
- * Benchmark of gets on a partitioned region.
- */
-public class NoopBenchmark7 implements PerformanceTest {
-
- @Test
- public void run() throws Exception {
- TestRunners.defaultRunner().runTest(this);
- }
-
- public NoopBenchmark7() {}
-
- @Override
- public TestConfig configure() {
- TestConfig config = GeodeBenchmark.createConfig();
- ClientServerTopology.configure(config);
- config.workload(new NoopTask(), CLIENT);
- return config;
-
- }
-}