Repository: impala
Updated Branches:
  refs/heads/master e66014967 -> e9bd917a2


IMPALA-7073: skip TestScannerReservation on non-miniclusters

The test is (sort of) tuned for miniclusters and is very targeted
to testing a specific code path, rather than general functional
correctness, so we don't really need coverage on all filesystems.

Change-Id: I7952f780cff80c08a6cbef898bf7b95c9bba5f6a
Reviewed-on: http://gerrit.cloudera.org:8080/10533
Reviewed-by: Thomas Marshall <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/impala/commit/e9bd917a
Tree: http://git-wip-us.apache.org/repos/asf/impala/tree/e9bd917a
Diff: http://git-wip-us.apache.org/repos/asf/impala/diff/e9bd917a

Branch: refs/heads/master
Commit: e9bd917a218b5e1717fced983f70f64850c6e02f
Parents: e660149
Author: Tim Armstrong <[email protected]>
Authored: Tue May 29 14:21:01 2018 -0700
Committer: Impala Public Jenkins <[email protected]>
Committed: Wed May 30 00:38:22 2018 +0000

----------------------------------------------------------------------
 tests/query_test/test_scanners.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/impala/blob/e9bd917a/tests/query_test/test_scanners.py
----------------------------------------------------------------------
diff --git a/tests/query_test/test_scanners.py 
b/tests/query_test/test_scanners.py
index 2245dd1..8fee9da 100644
--- a/tests/query_test/test_scanners.py
+++ b/tests/query_test/test_scanners.py
@@ -37,7 +37,8 @@ from tests.common.skip import (
     SkipIfADLS,
     SkipIfEC,
     SkipIfIsilon,
-    SkipIfLocal)
+    SkipIfLocal,
+    SkipIfNotHdfsMinicluster)
 from tests.common.test_dimensions import (
     create_single_exec_option_dimension,
     create_exec_option_dimension,
@@ -1061,6 +1062,7 @@ class TestScannerReservation(ImpalaTestSuite):
     cls.ImpalaTestMatrix.add_dimension(
         create_uncompressed_text_dimension(cls.get_workload()))
 
+  @SkipIfNotHdfsMinicluster.tuned_for_minicluster
   def test_scanners(self, vector):
     self.run_test_case('QueryTest/scanner-reservation', vector)
 

Reply via email to