Title: [241771] trunk/Tools
- Revision
- 241771
- Author
- [email protected]
- Date
- 2019-02-19 13:47:13 -0800 (Tue, 19 Feb 2019)
Log Message
Clean-up output from generate-xcfilelists so it can be filtered
https://bugs.webkit.org/show_bug.cgi?id=194795
Reviewed by Joseph Pecoraro (and Keith Rollin).
Replace the "..." with "GXCF:" in generate-xcfilelists output, and
make a slight tweak to filter-build-webkit so such lines are marked
as plain.
* Scripts/filter-build-webkit:
* Scripts/generate-xcfilelists:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (241770 => 241771)
--- trunk/Tools/ChangeLog 2019-02-19 20:45:52 UTC (rev 241770)
+++ trunk/Tools/ChangeLog 2019-02-19 21:47:13 UTC (rev 241771)
@@ -1,3 +1,17 @@
+2019-02-19 Dean Jackson <[email protected]>
+
+ Clean-up output from generate-xcfilelists so it can be filtered
+ https://bugs.webkit.org/show_bug.cgi?id=194795
+
+ Reviewed by Joseph Pecoraro (and Keith Rollin).
+
+ Replace the "..." with "GXCF:" in generate-xcfilelists output, and
+ make a slight tweak to filter-build-webkit so such lines are marked
+ as plain.
+
+ * Scripts/filter-build-webkit:
+ * Scripts/generate-xcfilelists:
+
2019-02-19 Pablo Saavedra <[email protected]>
pytest is not correctly auto-installed
Modified: trunk/Tools/Scripts/filter-build-webkit (241770 => 241771)
--- trunk/Tools/Scripts/filter-build-webkit 2019-02-19 20:45:52 UTC (rev 241770)
+++ trunk/Tools/Scripts/filter-build-webkit 2019-02-19 21:47:13 UTC (rev 241771)
@@ -160,13 +160,15 @@
printLine("$command $path", STYLE_PLAIN);
} elsif ($line =~ /^offlineasm\: /) {
printLine($line, STYLE_PLAIN);
- } 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 =~ /^(Generating|Merging) (\S+) (from|for) (\S+)/) {
+ printLine($line, STYLE_PLAIN);
+ } elsif ($line =~ /^GXCF:/) {
+ printLine($line, STYLE_PLAIN);
} elsif ($line =~ /^Pre-processing (\S+) sandbox profile/) {
printLine($line, STYLE_PLAIN);
} elsif ($line =~ /^(\S+\/cc).*?(\S+)\.(out|exp)/) {
Modified: trunk/Tools/Scripts/generate-xcfilelists (241770 => 241771)
--- trunk/Tools/Scripts/generate-xcfilelists 2019-02-19 20:45:52 UTC (rev 241770)
+++ trunk/Tools/Scripts/generate-xcfilelists 2019-02-19 21:47:13 UTC (rev 241771)
@@ -210,7 +210,7 @@
function log_debug()
{
- (( "${GX_DEBUG}" > 0 )) && stderr "... $@"
+ (( "${GX_DEBUG}" > 0 )) && stderr "GXCF: $@"
}
@@ -235,7 +235,7 @@
local GX_ARGS=("$@")
local GX_CALLSTACK=("${FUNCNAME[@]}")
unset GX_CALLSTACK[0]
- stderr "... (${GX_CALLSTACK[@]}): ${GX_ARGS[@]}"
+ stderr "GXCF: (${GX_CALLSTACK[@]}): ${GX_ARGS[@]}"
fi
}
@@ -242,7 +242,7 @@
function log_progress()
{
- stdout "... $@"
+ stdout "GXCF: $@"
}
@@ -752,7 +752,7 @@
if (( ${GX_RESULT} ))
then
- sed -E -e 's/^/... /' < "${GX_TEMP}/std.err"
+ sed -E -e 's/^/GXCF: /' < "${GX_TEMP}/std.err"
die "Error generating derived sources: error = ${GX_RESULT}" ${GX_RESULT}
fi
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes