⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 285817 in webkit


Ignore:
Timestamp:
Nov 15, 2021, 11:15:42 AM (5 years ago)
Author:
Angelos Oikonomopoulos
Message:

Skip tests newly-failing on mips
https://bugs.webkit.org/show_bug.cgi?id=233124

Unreviewed gardening.

After 3f59d2aa489ec843e055fc3104c275851d7fbd35, these tests started
failing with a SIGBUS on MIPS (on fuloong hardware, they pass on the
ci20 boards). Temporarily skip them on this arch until we can track
down the issue.

JSTests:

  • stress/call-varargs-double-new-array-buffer.js:
  • stress/callee-save-fpr.js:
  • stress/forward-varargs-double-new-array-buffer.js:
  • stress/new-array-with-spread-cow-double.js:
  • stress/new-array-with-spread-double-new-array-buffer.js:
  • stress/spread-escapes-but-new-array-buffer-does-not-double.js:

PerformanceTests:

  • ARES-6/Basic/basic-tests.yaml:
Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r285795 r285817  
     12021-11-15  Angelos Oikonomopoulos  <angelos@igalia.com>
     2
     3        Skip tests newly-failing on mips
     4        https://bugs.webkit.org/show_bug.cgi?id=233124
     5
     6        Unreviewed gardening.
     7
     8        After 3f59d2aa489ec843e055fc3104c275851d7fbd35, these tests started
     9        failing with a SIGBUS on MIPS (on fuloong hardware, they pass on the
     10        ci20 boards). Temporarily skip them on this arch until we can track
     11        down the issue.
     12
     13        * stress/call-varargs-double-new-array-buffer.js:
     14        * stress/callee-save-fpr.js:
     15        * stress/forward-varargs-double-new-array-buffer.js:
     16        * stress/new-array-with-spread-cow-double.js:
     17        * stress/new-array-with-spread-double-new-array-buffer.js:
     18        * stress/spread-escapes-but-new-array-buffer-does-not-double.js:
     19
    1202021-11-14  Yusuke Suzuki  <ysuzuki@apple.com>
    221
  • trunk/JSTests/stress/call-varargs-double-new-array-buffer.js

    r226033 r285817  
     1//@ skip if ["mips"].include?($architecture)
    12function assert(b, m = "") {
    23    if (!b)
  • trunk/JSTests/stress/callee-save-fpr.js

    r278937 r285817  
     1//@ skip if ["mips"].include?($architecture)
    12'use strict';
    23
  • trunk/JSTests/stress/forward-varargs-double-new-array-buffer.js

    r226033 r285817  
     1//@ skip if ["mips"].include?($architecture)
    12"use strict";
    23
  • trunk/JSTests/stress/new-array-with-spread-cow-double.js

    r253520 r285817  
     1//@ skip if ["mips"].include?($architecture)
    12function shouldBe(actual, expected) {
    23    if (actual !== expected)
  • trunk/JSTests/stress/new-array-with-spread-double-new-array-buffer.js

    r226033 r285817  
     1//@ skip if ["mips"].include?($architecture)
    12function shouldBe(actual, expected)
    23{
  • trunk/JSTests/stress/spread-escapes-but-new-array-buffer-does-not-double.js

    r232902 r285817  
     1//@ skip if ["mips"].include?($architecture)
    12function assert(b) {
    23    if (!b)
  • trunk/PerformanceTests/ARES-6/Basic/basic-tests.yaml

    r202689 r285817  
    2525  tests:
    2626    - stress-test.js
    27   cmd: defaultRunNoisyTest unless parseRunCommands
     27  cmd: |
     28    if ["mips"].include?($architecture)
     29        skip
     30    else
     31        defaultRunNoisyTest unless parseRunCommands
     32    end
    2833
  • trunk/PerformanceTests/ChangeLog

    r285623 r285817  
     12021-11-15  Angelos Oikonomopoulos  <angelos@igalia.com>
     2
     3        Skip tests newly-failing on mips
     4        https://bugs.webkit.org/show_bug.cgi?id=233124
     5
     6        Unreviewed gardening.
     7
     8        After 3f59d2aa489ec843e055fc3104c275851d7fbd35, these tests started
     9        failing with a SIGBUS on MIPS (on fuloong hardware, they pass on the
     10        ci20 boards). Temporarily skip them on this arch until we can track
     11        down the issue.
     12
     13        * ARES-6/Basic/basic-tests.yaml:
     14
    1152021-11-10  Sergio Villar Senin  <svillar@igalia.com>
    216
Note: See TracChangeset for help on using the changeset viewer.