From 393c65de6dacd2ced4e6ddcf9f31bae7366ca96a Mon Sep 17 00:00:00 2001 From: Bharath Vissapragada Date: Wed, 24 Feb 2016 04:14:07 -0800 Subject: [PATCH] IMPALA-3070: Disable test_hive_udfs_missing_jar on local file system Local file system builds do not allow running more than one impalad in parallel. This test relies on that behavior and hence is disabled for such builds. Change-Id: I93fe6ae37018885ede4838f5a2ce0bf11148c4e6 Reviewed-on: http://gerrit.cloudera.org:8080/2315 Reviewed-by: Bharath Vissapragada Tested-by: Internal Jenkins --- tests/query_test/test_udfs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/query_test/test_udfs.py b/tests/query_test/test_udfs.py index 2dfed6510..5573ffc2b 100644 --- a/tests/query_test/test_udfs.py +++ b/tests/query_test/test_udfs.py @@ -5,6 +5,7 @@ from tests.beeswax.impala_beeswax import ImpalaBeeswaxException from tests.common.test_vector import * from tests.common.impala_test_suite import * from tests.common.impala_cluster import ImpalaCluster +from tests.common.skip import SkipIfLocal from tests.common.skip import SkipIfS3 from tests.util.calculation_util import get_random_id from tests.util.filesystem_utils import get_fs_path, IS_S3 @@ -86,6 +87,7 @@ class TestUdfs(ImpalaTestSuite): self.client.execute("drop database if exists java_udfs_test cascade") self.client.execute("drop database if exists udf_test cascade") + @SkipIfLocal.multiple_impalad def test_hive_udfs_missing_jar(self, vector): """ IMPALA-2365: Impalad shouldn't crash if the udf jar isn't present on HDFS"""