WebKit Bugzilla
Attachment 339826 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-20180508123637.patch (text/plain), 502 bytes, created by
valerie
on 2018-05-08 09:36:38 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
valerie
Created:
2018-05-08 09:36:38 PDT
Size:
502 bytes
patch
obsolete
>Subversion Revision: 231483 >diff --git a/Tools/Scripts/test262/Runner.pm b/Tools/Scripts/test262/Runner.pm >index 2d0a3275033f3ad82148136636e6763941203a7c..e13accef224c4d00f728de448994304dfc73a7e4 100755 >--- a/Tools/Scripts/test262/Runner.pm >+++ b/Tools/Scripts/test262/Runner.pm >@@ -405,7 +405,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