Repository: hbase
Updated Branches:
  refs/heads/master 30d06dfe3 -> 590f02aad


HBASE-18341 Generalize regex matchers in findHangingTests.py script to match 
new consoleText of trunk build.

Change-Id: I0a4215827d3d561eef3f583da666c617f690d934


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

Branch: refs/heads/master
Commit: 590f02aad013a2955b82a3809202331b86bb2f12
Parents: 30d06df
Author: Apekshit Sharma <a...@apache.org>
Authored: Sat Jul 8 00:49:31 2017 -0700
Committer: Apekshit Sharma <a...@apache.org>
Committed: Sat Jul 8 00:50:20 2017 -0700

----------------------------------------------------------------------
 dev-support/findHangingTests.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/590f02aa/dev-support/findHangingTests.py
----------------------------------------------------------------------
diff --git a/dev-support/findHangingTests.py b/dev-support/findHangingTests.py
index 54275df..a8abdab 100755
--- a/dev-support/findHangingTests.py
+++ b/dev-support/findHangingTests.py
@@ -60,18 +60,18 @@ def get_bad_tests(console_url):
     failed_tests_set = set()
     timeout_tests_set = set()
     for line in response.content.splitlines():
-        result1 = re.match("^Running 
org.apache.hadoop.hbase.(\\w*\\.)*(\\w*)", line)
-        if result1:
-            test_case = result1.group(2)
+        result1 = re.findall("Running org.apache.hadoop.hbase.(.*)", line)
+        if len(result1) == 1:
+            test_case = result1[0]
             if test_case in all_tests_set:
                 print ("ERROR! Multiple tests with same name '{}'. Might get 
wrong results "
                        "for this test.".format(test_case))
             else:
                 hanging_tests_set.add(test_case)
                 all_tests_set.add(test_case)
-        result2 = re.match("^Tests run:.*- in 
org.apache.hadoop.hbase.(\\w*\\.)*(\\w*)", line)
-        if result2:
-            test_case = result2.group(2)
+        result2 = re.findall("Tests run:.*?- in org.apache.hadoop.hbase.(.*)", 
line)
+        if len(result2) == 1:
+            test_case = result2[0]
             if "FAILURE!" in line:
                 failed_tests_set.add(test_case)
             if test_case not in hanging_tests_set:

Reply via email to