GEODE-2515: Disabling BaseLineAndCompareQueryPerfJUnitTest This is a performance test, it should not be run as part of precheckin.
Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/8ff2fd40 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/8ff2fd40 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/8ff2fd40 Branch: refs/heads/GEODE-4160-mockito Commit: 8ff2fd4017ade81510e7705bf0f3254154a8805d Parents: f2262d1 Author: Dan Smith <[email protected]> Authored: Fri Feb 24 17:09:29 2017 -0800 Committer: Dan Smith <[email protected]> Committed: Mon Feb 27 08:59:50 2017 -0800 ---------------------------------------------------------------------- .../geode/cache/query/BaseLineAndCompareQueryPerfJUnitTest.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/8ff2fd40/geode-core/src/test/java/org/apache/geode/cache/query/BaseLineAndCompareQueryPerfJUnitTest.java ---------------------------------------------------------------------- diff --git a/geode-core/src/test/java/org/apache/geode/cache/query/BaseLineAndCompareQueryPerfJUnitTest.java b/geode-core/src/test/java/org/apache/geode/cache/query/BaseLineAndCompareQueryPerfJUnitTest.java index 50a57c4..a46e1c4 100755 --- a/geode-core/src/test/java/org/apache/geode/cache/query/BaseLineAndCompareQueryPerfJUnitTest.java +++ b/geode-core/src/test/java/org/apache/geode/cache/query/BaseLineAndCompareQueryPerfJUnitTest.java @@ -29,15 +29,18 @@ import org.apache.geode.test.junit.categories.IntegrationTest; import java.util.*; import java.io.*; +import org.apache.geode.test.junit.categories.PerformanceTest; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.categories.Category; /** * This test is to baseline and compare the performance figures for index usage benchmarks. */ -@Category(IntegrationTest.class) +@Category(PerformanceTest.class) +@Ignore("Performance tests should not be run as part of precheckin") public class BaseLineAndCompareQueryPerfJUnitTest { /** Creates a new instance of BaseLineAndCompareQueryPerfJUnitTest */
