Title: [89208] trunk/Tools
Revision
89208
Author
[email protected]
Date
2011-06-18 17:41:21 -0700 (Sat, 18 Jun 2011)

Log Message

2011-06-18  Daniel Bates  <[email protected]>

        Rubber-stamped by Eric Seidel.

        Remove run-_javascript_core-tests --skip-build option; Instead add --build/no-build options
        https://bugs.webkit.org/show_bug.cgi?id=62767

        Part 3 of 3

        Remove the command-line option --skip-build now that the master BuildBot has been restarted
        following <http://trac.webkit.org/changeset/89138>.

        Instead, specify --no-build to get analogous functionality.

        * Scripts/run-_javascript_core-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (89207 => 89208)


--- trunk/Tools/ChangeLog	2011-06-18 21:04:42 UTC (rev 89207)
+++ trunk/Tools/ChangeLog	2011-06-19 00:41:21 UTC (rev 89208)
@@ -1,3 +1,19 @@
+2011-06-18  Daniel Bates  <[email protected]>
+
+        Rubber-stamped by Eric Seidel.
+
+        Remove run-_javascript_core-tests --skip-build option; Instead add --build/no-build options
+        https://bugs.webkit.org/show_bug.cgi?id=62767
+
+        Part 3 of 3
+
+        Remove the command-line option --skip-build now that the master BuildBot has been restarted
+        following <http://trac.webkit.org/changeset/89138>.
+
+        Instead, specify --no-build to get analogous functionality.
+
+        * Scripts/run-_javascript_core-tests:
+
 2011-06-18  Dirk Pranke  <[email protected]>
 
         Reviewed by Tony Chang.

Modified: trunk/Tools/Scripts/run-_javascript_core-tests (89207 => 89208)


--- trunk/Tools/Scripts/run-_javascript_core-tests	2011-06-18 21:04:42 UTC (rev 89207)
+++ trunk/Tools/Scripts/run-_javascript_core-tests	2011-06-19 00:41:21 UTC (rev 89208)
@@ -57,7 +57,6 @@
 # These variables are intentionally left undefined.
 my $root;
 my $showHelp;
-my $skipBuild;
 
 my $buildJSC = 1;
 
@@ -75,14 +74,9 @@
     'j|jsDriver-args=s' => \$jsDriverArgs,
     'root=s' => \$root,
     'build!' => \$buildJSC,
-    'skip-build' => \$skipBuild,
     'help' => \$showHelp
 );
 
-# FIXME: We'll remove this and the --skip-build option once we change over the buildbot configuration
-# to use --no-build. See <https://bugs.webkit.org/show_bug.cgi?id=62767> for more details.
-$buildJSC = 0 if $skipBuild;
-
 # Assume any arguments left over from GetOptions are assumed to be build arguments
 my @buildArgs = @ARGV;
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to