WebKit Bugzilla
Attachment 339882 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.diff (text/plain), 984 bytes, created by
valerie
on 2018-05-08 14:40:08 PDT
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
valerie
Created:
2018-05-08 14:40:08 PDT
Size:
984 bytes
patch
obsolete
>diff --git a/Tools/ChangeLog b/Tools/ChangeLog >index 5fb10feb0fd..e5eadbfebb5 100644 >--- a/Tools/ChangeLog >+++ b/Tools/ChangeLog >@@ -1,3 +1,13 @@ >+2018-05-08 Valerie R Young <valerie@bocoup.com> >+ >+ test262/Runner.pm: lower number of processes per core >+ https://bugs.webkit.org/show_bug.cgi?id=185426 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Scripts/test262/Runner.pm: >+ (getProcesses): >+ > 2018-05-08 Wenson Hsieh <wenson_hsieh@apple.com> > > [iOS] WKAttachmentTestsIOS.InsertDroppedItemProvidersInOrder fails after r231396 >diff --git a/Tools/Scripts/test262/Runner.pm b/Tools/Scripts/test262/Runner.pm >index ed074b0b69f..a9b2b089f8f 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