Changeset 231525 in webkit


Ignore:
Timestamp:
May 8, 2018 5:00:13 PM (6 years ago)
Author:
commit-queue@webkit.org
Message:

test262/Runner.pm: lower number of processes per core
https://bugs.webkit.org/show_bug.cgi?id=185426

Patch by Valerie R Young <valerie@bocoup.com> on 2018-05-08
Reviewed by Michael Saboff.

  • Scripts/test262/Runner.pm:

(getProcesses):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r231523 r231525  
     12018-05-08  Valerie R Young  <valerie@bocoup.com>
     2
     3        test262/Runner.pm: lower number of processes per core
     4        https://bugs.webkit.org/show_bug.cgi?id=185426
     5
     6        Reviewed by Michael Saboff.
     7
     8        * Scripts/test262/Runner.pm:
     9        (getProcesses):
     10
    1112018-05-08  Leo Balter  <leonardo.balter@gmail.com>
    212
  • trunk/Tools/Scripts/test262/Runner.pm

    r231494 r231525  
    405405    }
    406406
    407     return $cores * 8;
     407    if ($cores <= 8) {
     408        return $cores * 4;
     409    }
     410    else {
     411        return $cores * 2;
     412    }
    408413}
    409414
Note: See TracChangeset for help on using the changeset viewer.