Repository: hbase
Updated Branches:
  refs/heads/branch-2 31287d893 -> 72ba5c294


HBASE-19246 Trivial fix in findHangingTests.py to make it not stop on finding 
'bad string'.


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

Branch: refs/heads/branch-2
Commit: 72ba5c294edc965c45f56318a823e7a82f960203
Parents: 31287d8
Author: Apekshit Sharma <a...@apache.org>
Authored: Mon Nov 13 11:43:35 2017 -0800
Committer: Apekshit Sharma <a...@apache.org>
Committed: Mon Nov 13 11:46:46 2017 -0800

----------------------------------------------------------------------
 dev-support/findHangingTests.py | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/72ba5c29/dev-support/findHangingTests.py
----------------------------------------------------------------------
diff --git a/dev-support/findHangingTests.py b/dev-support/findHangingTests.py
index a8abdab..e7bf906 100755
--- a/dev-support/findHangingTests.py
+++ b/dev-support/findHangingTests.py
@@ -86,7 +86,6 @@ def get_bad_tests(console_url):
         for bad_string in BAD_RUN_STRINGS:
             if re.match(".*" + bad_string + ".*", line):
                 print "Bad string found in build:\n > {}".format(line)
-                return
     print "Result > total tests: {:4}   failed : {:4}  timedout : {:4}  
hanging : {:4}".format(
         len(all_tests_set), len(failed_tests_set), len(timeout_tests_set), 
len(hanging_tests_set))
     return [all_tests_set, failed_tests_set, timeout_tests_set, 
hanging_tests_set]

Reply via email to