Title: [273316] trunk/Tools
- Revision
- 273316
- Author
- [email protected]
- Date
- 2021-02-23 10:10:55 -0800 (Tue, 23 Feb 2021)
Log Message
Unreviewed, reverting r273307.
https://bugs.webkit.org/show_bug.cgi?id=222320
Need to update CI code for CLoop bot before landing this
Reverted changeset:
"Detect unrecognized options in run-_javascript_core-tests"
https://bugs.webkit.org/show_bug.cgi?id=221186
https://trac.webkit.org/changeset/273307
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (273315 => 273316)
--- trunk/Tools/ChangeLog 2021-02-23 17:54:24 UTC (rev 273315)
+++ trunk/Tools/ChangeLog 2021-02-23 18:10:55 UTC (rev 273316)
@@ -1,3 +1,16 @@
+2021-02-23 Commit Queue <[email protected]>
+
+ Unreviewed, reverting r273307.
+ https://bugs.webkit.org/show_bug.cgi?id=222320
+
+ Need to update CI code for CLoop bot before landing this
+
+ Reverted changeset:
+
+ "Detect unrecognized options in run-_javascript_core-tests"
+ https://bugs.webkit.org/show_bug.cgi?id=221186
+ https://trac.webkit.org/changeset/273307
+
2021-02-23 Jonathan Bedard <[email protected]>
show-identifier fails with error: ascii codec can't decode byte 0xc3 in position
Modified: trunk/Tools/Scripts/run-_javascript_core-tests (273315 => 273316)
--- trunk/Tools/Scripts/run-_javascript_core-tests 2021-02-23 17:54:24 UTC (rev 273315)
+++ trunk/Tools/Scripts/run-_javascript_core-tests 2021-02-23 18:10:55 UTC (rev 273316)
@@ -484,23 +484,9 @@
$runJSCStress = enableTestOrNot($runJSCStress);
$runMozillaTests = enableTestOrNot($runMozillaTests);
-my @buildArgs;
+# Assume any arguments left over from GetOptions are assumed to be build arguments
+my @buildArgs = @ARGV;
-if ($buildJSC) {
- # Assume any arguments left over from GetOptions are to be passed as build arguments.
- @buildArgs = @ARGV;
-} elsif (scalar(@ARGV) > 0) {
- foreach (@ARGV) {
- my $arg = $_;
- if ($arg =~ /^-.*/) {
- print STDERR "Unrecognized option `$arg'\n";
- } else {
- print STDERR "Stray anonymous argument `$arg'\n";
- }
- }
- exit 2;
-}
-
if ($showHelp) {
print STDERR $usage;
exit 1;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes