Repository: incubator-impala Updated Branches: refs/heads/master fba3fc21f -> 10385c11a
IMPALA-6127: Fix timeout in TestRuntimeFilter.test_wait_time test_wait_time has been flaky recently on ASAN due to hitting a timeout. The fix is to increase the timeout for ASAN builds. Change-Id: Iee005bee8e0a535ce59d2e23e56be6004f2eb9de Reviewed-on: http://gerrit.cloudera.org:8080/8427 Reviewed-by: Alex Behm <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/efe95bd3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/efe95bd3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/efe95bd3 Branch: refs/heads/master Commit: efe95bd3e43050f7a65f1747614193e8038c482d Parents: fba3fc2 Author: Thomas Tauber-Marshall <[email protected]> Authored: Sat Oct 28 12:44:45 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Tue Oct 31 22:02:21 2017 +0000 ---------------------------------------------------------------------- tests/query_test/test_runtime_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/efe95bd3/tests/query_test/test_runtime_filters.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_runtime_filters.py b/tests/query_test/test_runtime_filters.py index 313b058..049560f 100644 --- a/tests/query_test/test_runtime_filters.py +++ b/tests/query_test/test_runtime_filters.py @@ -48,7 +48,7 @@ class TestRuntimeFilters(ImpalaTestSuite): now = time.time() self.run_test_case('QueryTest/runtime_filters_wait', vector) duration = time.time() - now - assert duration < 60, \ + assert duration < WAIT_TIME_MS, \ "Query took too long (%ss, possibly waiting for missing filters?)" % str(duration) def test_file_filtering(self, vector):
