This is an automated email from the ASF dual-hosted git repository. vladimirsitnikov pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/calcite.git
commit 08bde847c8b0749c7686e66751b4d248cd7c5cb5 Author: Vladimir Sitnikov <[email protected]> AuthorDate: Tue Nov 12 17:22:29 2019 +0300 [CALCITE-3457] Ignore fuzzer tests due to known unsolved issue --- .../test/java/org/apache/calcite/test/fuzzer/RexProgramFuzzyTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/test/java/org/apache/calcite/test/fuzzer/RexProgramFuzzyTest.java b/core/src/test/java/org/apache/calcite/test/fuzzer/RexProgramFuzzyTest.java index 0e1720c..fc3dc7c 100644 --- a/core/src/test/java/org/apache/calcite/test/fuzzer/RexProgramFuzzyTest.java +++ b/core/src/test/java/org/apache/calcite/test/fuzzer/RexProgramFuzzyTest.java @@ -346,6 +346,7 @@ public class RexProgramFuzzyTest extends RexProgramBuilderBase { t.setStackTrace(stackTrace); } + @Ignore("Ignore for now: CALCITE-3457") @Test public void defaultFuzzTest() { try { runRexFuzzer(DEFAULT_FUZZ_TEST_SEED, DEFAULT_FUZZ_TEST_DURATION, 1, @@ -361,6 +362,7 @@ public class RexProgramFuzzyTest extends RexProgramBuilderBase { } } + @Ignore("Ignore for now: CALCITE-3457") @Test public void testFuzzy() { runRexFuzzer(SEED, TEST_DURATION, MAX_FAILURES, TEST_ITERATIONS, TOPN_SLOWEST); }
