File tree 2 files changed +10
-3
lines changed
BuildSlaveSupport/build.webkit.org-config
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -658,15 +658,15 @@ class RunGtkAPITests(shell.Test):
658
658
self .skippedTests = 0
659
659
self .statusLine = []
660
660
661
- foundItems = re .findall ("Unexpected failures \((\d+)\): " , logText )
661
+ foundItems = re .findall ("Unexpected failures \((\d+)\)" , logText )
662
662
if (foundItems ):
663
663
self .incorrectTests = int (foundItems [0 ])
664
664
665
- foundItems = re .findall ("Unexpected crashes \((\d+)\): " , logText )
665
+ foundItems = re .findall ("Unexpected crashes \((\d+)\)" , logText )
666
666
if (foundItems ):
667
667
self .crashedTests = int (foundItems [0 ])
668
668
669
- foundItems = re .findall ("Unexpected timeouts \((\d+)\): " , logText )
669
+ foundItems = re .findall ("Unexpected timeouts \((\d+)\)" , logText )
670
670
if (foundItems ):
671
671
self .timedOutTests = int (foundItems [0 ])
672
672
Original file line number Diff line number Diff line change
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
+
1
8
2017-10-06 Charles Turner <
[email protected] >
2
9
3
10
Disable bmalloc when running Valgrind
You can’t perform that action at this time.
0 commit comments