Skip to content

Commit 363daf5

Browse files
Unreviewed. Fix parsing of GTK unit tests output in bot configuration.
* BuildSlaveSupport/build.webkit.org-config/master.cfg: (RunGtkAPITests.commandComplete): Remove trailing ':' from the regular expression. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@222976 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 9b64889 commit 363daf5

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -658,15 +658,15 @@ class RunGtkAPITests(shell.Test):
658658
self.skippedTests = 0
659659
self.statusLine = []
660660

661-
foundItems = re.findall("Unexpected failures \((\d+)\):", logText)
661+
foundItems = re.findall("Unexpected failures \((\d+)\)", logText)
662662
if (foundItems):
663663
self.incorrectTests = int(foundItems[0])
664664

665-
foundItems = re.findall("Unexpected crashes \((\d+)\):", logText)
665+
foundItems = re.findall("Unexpected crashes \((\d+)\)", logText)
666666
if (foundItems):
667667
self.crashedTests = int(foundItems[0])
668668

669-
foundItems = re.findall("Unexpected timeouts \((\d+)\):", logText)
669+
foundItems = re.findall("Unexpected timeouts \((\d+)\)", logText)
670670
if (foundItems):
671671
self.timedOutTests = int(foundItems[0])
672672

Tools/ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2017-10-06 Carlos Garcia Campos <[email protected]>
2+
3+
Unreviewed. Fix parsing of GTK unit tests output in bot configuration.
4+
5+
* BuildSlaveSupport/build.webkit.org-config/master.cfg:
6+
(RunGtkAPITests.commandComplete): Remove trailing ':' from the regular expression.
7+
18
2017-10-06 Charles Turner <[email protected]>
29

310
Disable bmalloc when running Valgrind

0 commit comments

Comments
 (0)