WebKit Bugzilla
Attachment 339873 Details for
Bug 185426
: test262/Runner.pm: lower number of processes per core
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185426-20180508170527.patch (text/plain), 502 bytes, created by
valerie
on 2018-05-08 14:05:28 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
valerie
Created:
2018-05-08 14:05:28 PDT
Size:
502 bytes
patch
obsolete
>Subversion Revision: 231510 >diff --git a/Tools/Scripts/test262/Runner.pm b/Tools/Scripts/test262/Runner.pm >index ed074b0b69fefe3cbabf89ff473d754f8e359826..a9b2b089f8f3112298841a3c47cfa4a543635788 100755 >--- a/Tools/Scripts/test262/Runner.pm >+++ b/Tools/Scripts/test262/Runner.pm >@@ -404,7 +404,12 @@ sub getProcesses { > $cores = 1; > } > >- return $cores * 8; >+ if ($cores <= 8) { >+ return $cores * 4; >+ } >+ else { >+ return $cores * 2; >+ } > } > > sub parseError {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185426
:
339826
|
339873
|
339882