Title: [166177] trunk/Tools
Revision
166177
Author
[email protected]
Date
2014-03-24 10:21:46 -0700 (Mon, 24 Mar 2014)

Log Message

filter-build-webkit: reduce unfiltered output
https://bugs.webkit.org/show_bug.cgi?id=130485

Patch by Joseph Pecoraro <[email protected]> on 2014-03-24
Reviewed by Brent Fulgham.

* Scripts/filter-build-webkit:
(shouldIgnoreLine):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (166176 => 166177)


--- trunk/Tools/ChangeLog	2014-03-24 17:13:03 UTC (rev 166176)
+++ trunk/Tools/ChangeLog	2014-03-24 17:21:46 UTC (rev 166177)
@@ -1,3 +1,13 @@
+2014-03-24  Joseph Pecoraro  <[email protected]>
+
+        filter-build-webkit: reduce unfiltered output
+        https://bugs.webkit.org/show_bug.cgi?id=130485
+
+        Reviewed by Brent Fulgham.
+
+        * Scripts/filter-build-webkit:
+        (shouldIgnoreLine):
+
 2014-03-24  László Langó  <[email protected]>
 
         prepare-ChangeLog should list functions that have been removed too.

Modified: trunk/Tools/Scripts/filter-build-webkit (166176 => 166177)


--- trunk/Tools/Scripts/filter-build-webkit	2014-03-24 17:13:03 UTC (rev 166176)
+++ trunk/Tools/Scripts/filter-build-webkit	2014-03-24 17:21:46 UTC (rev 166177)
@@ -138,11 +138,11 @@
         $buildFinished = 1;
     } elsif ($line =~ /^===/) {
         printLine($line, STYLE_HEADER);
-    } elsif ($line =~ /Checking Dependencies|Check dependencies|Create product structure/) {
+    } elsif ($line =~ /Checking Dependencies|Check dependencies|Create product structure|Write auxiliary files/) {
         printLine($line, STYLE_PLAIN);
     } elsif ($line =~ /\*\* BUILD SUCCEEDED \*\*/) {
         printLine("Build Succeeded", STYLE_SUCCESS);
-    } elsif ($line =~ /^(\e\[1m)?(PhaseScriptExecution|ClCompile|CompileC|Distributed-CompileC|Ld|PBXCp|CpResource|CopyPNGFile|CopyTiffFile|CpHeader|Processing|ProcessInfoPlistFile|ProcessPCH|ProcessPCH\+\+|Touch|Libtool|CopyStringsFile|Mig|CreateUniversalBinary|Analyze|ProcessProductPackaging|CodeSign|SymLink|Updating|CompileXIB|StripNIB|CopyPlistFile|GenerateDSYMFile)(\e\[0m)? ("[^"]+"|(\\|(?<=\\)\s|\S)+)?/) {
+    } elsif ($line =~ /^(\e\[1m)?(PhaseScriptExecution|ClCompile|CompileC|Distributed-CompileC|Ld|PBXCp|CpResource|CopyPNGFile|CopyTiffFile|CpHeader|Processing|ProcessInfoPlistFile|ProcessPCH|ProcessPCH\+\+|Touch|Libtool|CopyStringsFile|Mig|CreateUniversalBinary|Analyze|AnalyzeShallow|ProcessProductPackaging|CodeSign|SymLink|Updating|CompileXIB|StripNIB|CopyPlistFile|GenerateDSYMFile|ExternalBuildToolExecution)(\e\[0m)? ("[^"]+"|(\\|(?<=\\)\s|\S)+)?/) {
         my ($command, $path) = ($2, basename($4));
         $path =~ s/("|\\|\.[ah]$)//g;
         printLine("$command $path", STYLE_PLAIN);
@@ -160,7 +160,11 @@
         printLine("$command $path", STYLE_PLAIN);
     } elsif ($line =~ /^offlineasm\: /) {
         printLine($line, STYLE_PLAIN);
-    } elsif ($line =~ /^Generating (bindings|messages? (header|receiver)|derived source) for (\S+)\.\.\./) {
+    } elsif ($line =~ /^Generating (\S+) from (\S+)/) {
+        printLine($line, STYLE_PLAIN);
+    } elsif ($line =~ /^Generating bindings for the (\S+) builtin\./) {
+        printLine("Generating $1 builtin", STYLE_PLAIN);
+    } elsif ($line =~ /^Generating (bindings|messages? (header|receiver|dispatcher)|derived source) for (\S+)\.\.\./) {
         my ($command, $path) = ($1, basename($3));
         printLine("Generating $command $path", STYLE_PLAIN);
     } elsif ($line =~ /^Pre-processing (\S+) sandbox profile/) {
@@ -272,7 +276,7 @@
         return 1 if $line =~ /MSB3073:\s+if not exist/;
         return 1 if $line =~ /which.exe bash/;
     } else {
-        return 1 if $line =~ /^(touch|perl|cat|rm -f|bison|flex|python|\/usr\/bin\/g\+\+|gperf|echo|sed|if \[ \-f|WebCore\/generate-export-file) /;
+        return 1 if $line =~ /^(touch|perl|cat|rm -f|bison|flex|python|\/usr\/bin\/g\+\+|\/bin\/ln|gperf|echo|sed|if \[ \-f|WebCore\/generate-export-file|write-file|chmod) /;
         return 1 if $line =~ /^    / && $previousLine !~ /referenced from:$/;
         return 1 if $line =~ /^printf /;
         return 1 if $line =~ /^offlineasm: Nothing changed/;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to