Title: [182269] trunk/Tools
Revision
182269
Author
a...@apple.com
Date
2015-04-01 23:29:20 -0700 (Wed, 01 Apr 2015)

Log Message

filter-webkit-build should filter out "created by an unsupported XCDependencyGraph build" lines
https://bugs.webkit.org/show_bug.cgi?id=143282

Reviewed by Daniel Bates.

* Scripts/filter-build-webkit: (shouldIgnoreLine): Do it.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (182268 => 182269)


--- trunk/Tools/ChangeLog	2015-04-02 06:28:24 UTC (rev 182268)
+++ trunk/Tools/ChangeLog	2015-04-02 06:29:20 UTC (rev 182269)
@@ -1,5 +1,14 @@
 2015-04-01  Alexey Proskuryakov  <a...@apple.com>
 
+        filter-webkit-build should filter out "created by an unsupported XCDependencyGraph build" lines
+        https://bugs.webkit.org/show_bug.cgi?id=143282
+
+        Reviewed by Daniel Bates.
+
+        * Scripts/filter-build-webkit: (shouldIgnoreLine): Do it.
+
+2015-04-01  Alexey Proskuryakov  <a...@apple.com>
+
         When LayoutTestHelper fails to start, we continue to run the tests, ending up with mysterious failures
         https://bugs.webkit.org/show_bug.cgi?id=143240
         rdar://problem/19990425

Modified: trunk/Tools/Scripts/filter-build-webkit (182268 => 182269)


--- trunk/Tools/Scripts/filter-build-webkit	2015-04-02 06:28:24 UTC (rev 182268)
+++ trunk/Tools/Scripts/filter-build-webkit	2015-04-02 06:29:20 UTC (rev 182269)
@@ -259,6 +259,7 @@
     return 1 if $line =~ / xcodebuild\[[0-9]+:[0-9a-f]+\]\s+DVTAssertions: Warning in .*XCClangResultsPostprocessor.m/;
     return 1 if $line =~ /^(Details|Object|Method|Function|Thread):/;
     return 1 if $line =~ /^Please file a bug at /;
+    return 1 if $line =~ /created by an unsupported XCDependencyGraph build$/;
 
     if ($platform eq "win") {
         return 1 if $line =~ /^\s*(touch|perl|cat|rm -f|bison|del|flex|python|\/usr\/bin\/g\+\+|gperf|echo|sed|if \[ \-f|WebCore\/generate-export-file) /;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to