Changeset 228011 in webkit


Ignore:
Timestamp:
Feb 2, 2018 8:38:55 AM (6 years ago)
Author:
guijemont@igalia.com
Message:

JSTests: Skip mozilla/js1_5/Array/regress-157652.js on all memory limited platforms
https://bugs.webkit.org/show_bug.cgi?id=182411

Reviewed by Carlos Alberto Lopez Perez.

This is skipped only on arm memory limited platforms. Until recently
it was not a problem on MIPS as the butterfly was not initialized. But
since r227435, the butterfly is initialized in that test and therefore
memory is allocated, and the test typically takes around 512M, which
means it generally gets OOM-killed on the MIPS buildbot.

  • mozilla/mozilla-tests.yaml:
Location:
trunk/JSTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r227998 r228011  
     12018-02-02  Guillaume Emont  <guijemont@igalia.com>
     2
     3        JSTests: Skip mozilla/js1_5/Array/regress-157652.js on all memory limited platforms
     4        https://bugs.webkit.org/show_bug.cgi?id=182411
     5
     6        Reviewed by Carlos Alberto Lopez Perez.
     7
     8        This is skipped only on arm memory limited platforms. Until recently
     9        it was not a problem on MIPS as the butterfly was not initialized. But
     10        since r227435, the butterfly is initialized in that test and therefore
     11        memory is allocated, and the test typically takes around 512M, which
     12        means it generally gets OOM-killed on the MIPS buildbot.
     13
     14        * mozilla/mozilla-tests.yaml:
     15
    1162018-02-01  Mark Lam  <mark.lam@apple.com>
    217
  • trunk/JSTests/mozilla/mozilla-tests.yaml

    r221622 r228011  
    20382038- path: js1_5/Array/regress-157652.js
    20392039  cmd: |
    2040       if $architecture == "arm" and $memoryLimited
     2040      if $memoryLimited
    20412041          skip
    20422042      else
Note: See TracChangeset for help on using the changeset viewer.