Changeset 97567 in webkit


Ignore:
Timestamp:
Oct 15, 2011 5:18:26 PM (13 years ago)
Author:
ojan@chromium.org
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r97562 r97567  
     12011-10-15  Ojan Vafai  <ojan@chromium.org>
     2
     3        run-webkit-tests should accept --child-processes
     4        https://bugs.webkit.org/show_bug.cgi?id=69713
     5
     6        Reviewed by Adam Barth.
     7
     8        Only set --child-processes=1 if --child-processes it not
     9        passed on the commandline.
     10
     11        * Scripts/run-webkit-tests:
     12
    1132011-10-15  Daniel Bates  <dbates@webkit.org>
    214
  • trunk/Tools/Scripts/run-webkit-tests

    r97463 r97567  
    9898if (useNewRunWebKitTests()) {
    9999    $harnessName = "new-run-webkit-tests";
    100     push(@ARGV, "--child-processes=1");
    101     print "Running new-run-webkit-tests with one child process.\n";
    102     print "For more parallelism, run new-run-webkit-tests directly.\n";
     100
     101    if (!grep(/--child-processes/, @ARGV)) {
     102        push(@ARGV, "--child-processes=1");
     103        print "Running new-run-webkit-tests with one child process.\n";
     104        print "For more parallelism, run new-run-webkit-tests directly.\n";
     105    }
     106
    103107    if (runningOnBuildBot()) {
    104108        push(@ARGV, "--verbose");
Note: See TracChangeset for help on using the changeset viewer.