Title: [97567] trunk/Tools
- Revision
- 97567
- Author
- [email protected]
- Date
- 2011-10-15 17:18:26 -0700 (Sat, 15 Oct 2011)
Log Message
run-webkit-tests should accept --child-processes
https://bugs.webkit.org/show_bug.cgi?id=69713
Reviewed by Adam Barth.
Only set --child-processes=1 if --child-processes it not
passed on the commandline.
* Scripts/run-webkit-tests:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (97566 => 97567)
--- trunk/Tools/ChangeLog 2011-10-15 23:46:03 UTC (rev 97566)
+++ trunk/Tools/ChangeLog 2011-10-16 00:18:26 UTC (rev 97567)
@@ -1,3 +1,15 @@
+2011-10-15 Ojan Vafai <[email protected]>
+
+ run-webkit-tests should accept --child-processes
+ https://bugs.webkit.org/show_bug.cgi?id=69713
+
+ Reviewed by Adam Barth.
+
+ Only set --child-processes=1 if --child-processes it not
+ passed on the commandline.
+
+ * Scripts/run-webkit-tests:
+
2011-10-15 Daniel Bates <[email protected]>
Extract common gdb code into its own function; Remove script gdb-safari
Modified: trunk/Tools/Scripts/run-webkit-tests (97566 => 97567)
--- trunk/Tools/Scripts/run-webkit-tests 2011-10-15 23:46:03 UTC (rev 97566)
+++ trunk/Tools/Scripts/run-webkit-tests 2011-10-16 00:18:26 UTC (rev 97567)
@@ -97,9 +97,13 @@
if (useNewRunWebKitTests()) {
$harnessName = "new-run-webkit-tests";
- push(@ARGV, "--child-processes=1");
- print "Running new-run-webkit-tests with one child process.\n";
- print "For more parallelism, run new-run-webkit-tests directly.\n";
+
+ if (!grep(/--child-processes/, @ARGV)) {
+ push(@ARGV, "--child-processes=1");
+ print "Running new-run-webkit-tests with one child process.\n";
+ print "For more parallelism, run new-run-webkit-tests directly.\n";
+ }
+
if (runningOnBuildBot()) {
push(@ARGV, "--verbose");
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes