Title: [233037] trunk/Tools
Revision
233037
Author
ca...@igalia.com
Date
2018-06-21 06:57:50 -0700 (Thu, 21 Jun 2018)

Log Message

[Tools] add a --debug option to test262/Runner.pm for buildbots
https://bugs.webkit.org/show_bug.cgi?id=186113

Reviewed by Michael Saboff.

test262-runner runs Debug builds by default, but this allows us to be
explicit about it in buildbots.

* Scripts/test262/Runner.pm:
(processCLI):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (233036 => 233037)


--- trunk/Tools/ChangeLog	2018-06-21 13:37:05 UTC (rev 233036)
+++ trunk/Tools/ChangeLog	2018-06-21 13:57:50 UTC (rev 233037)
@@ -1,3 +1,16 @@
+2018-06-21  Caitlin Potter  <ca...@igalia.com>
+
+        [Tools] add a --debug option to test262/Runner.pm for buildbots
+        https://bugs.webkit.org/show_bug.cgi?id=186113
+
+        Reviewed by Michael Saboff.
+
+        test262-runner runs Debug builds by default, but this allows us to be
+        explicit about it in buildbots.
+
+        * Scripts/test262/Runner.pm:
+        (processCLI):
+
 2018-06-21  Carlos Garcia Campos  <cgar...@igalia.com>
 
         run-gtk-tests (glib/common.py) cannot determine build directory when webKitBranchBuild=true

Modified: trunk/Tools/Scripts/test262/Runner.pm (233036 => 233037)


--- trunk/Tools/Scripts/test262/Runner.pm	2018-06-21 13:37:05 UTC (rev 233036)
+++ trunk/Tools/Scripts/test262/Runner.pm	2018-06-21 13:57:50 UTC (rev 233037)
@@ -131,6 +131,7 @@
         'p|child-processes=i' => \$maxProcesses,
         'h|help' => \$help,
         'release' => \$release,
+        'debug' => sub { $release = 0; },
         'v|verbose' => \$verbose,
         'f|features=s@' => \@features,
         'c|config=s' => \$configFile,
@@ -1229,6 +1230,10 @@
 
 Use the Release build of JSC. Can only use if --jsc <path> is not provided. The Debug build of JSC is used by default.
 
+=item B<--debug>
+
+Use the Debug build of JSC. Can only use if --jsc <path> is not provided. Negates the --release option.
+
 =item B<--verbose, -v>
 
 Verbose output for test results. Includes error message for test.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to