Repository: kudu Updated Branches: refs/heads/master a4642a41e -> 3e59fd7b1
Mark hms_client-test as RUN_SERIAL to avoid timeouts It seems this test often times out when running in parallel with others. Let's see if running it serially helps. Change-Id: Idc152579d45ec4c945f1bc60e71af3c30ded645f Reviewed-on: http://gerrit.cloudera.org:8080/8566 Reviewed-by: Dan Burkert <[email protected]> Tested-by: Kudu Jenkins Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/63b53ad2 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/63b53ad2 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/63b53ad2 Branch: refs/heads/master Commit: 63b53ad2c9a26a3a9eab348471d4f247eb228315 Parents: a4642a4 Author: Todd Lipcon <[email protected]> Authored: Wed Nov 15 21:04:01 2017 -0800 Committer: Todd Lipcon <[email protected]> Committed: Tue Nov 21 04:37:34 2017 +0000 ---------------------------------------------------------------------- src/kudu/hms/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/63b53ad2/src/kudu/hms/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/src/kudu/hms/CMakeLists.txt b/src/kudu/hms/CMakeLists.txt index e9f92a5..e449047 100644 --- a/src/kudu/hms/CMakeLists.txt +++ b/src/kudu/hms/CMakeLists.txt @@ -73,5 +73,7 @@ if (NOT NO_TESTS) mini_hms ${KUDU_MIN_TEST_LIBS}) - ADD_KUDU_TEST(hms_client-test) + # This test has to run serially since otherwise starting the HMS can take a very + # long time. + ADD_KUDU_TEST(hms_client-test RUN_SERIAL true) endif()
