Changeset 252964 in webkit


Ignore:
Timestamp:
Nov 30, 2019 8:20:38 PM (4 years ago)
Author:
Ross Kirsling
Message:

test262-runner should dump YAML with correct encoding
https://bugs.webkit.org/show_bug.cgi?id=204493

Reviewed by Saam Barati.

JSTests:

  • test262/expectations.yaml:

Fix double-encoding of test failure output.

Tools:

Even though we spit out correctly-encoded output to the terminal, Perl's YAML module insists upon *re*-encoding
to UTF-8 when dumping to file. This works out in the end because an analogous double-decode occurs when loading
from file. Still, it's really annoying that expectations.yaml has garbled (i.e. double-encoded) text.

We shouldn't modify libraries directly, but we can copy-paste DumpFile/LoadFile into Runner.pm and tweak!

  • Scripts/test262/Runner.pm:

(DumpFile):
(LoadFile):
Add custom versions of DumpFile/LoadFile which do not execute binmode $OUT, ':utf8';.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r252836 r252964  
     12019-11-30  Ross Kirsling  <ross.kirsling@sony.com>
     2
     3        test262-runner should dump YAML with correct encoding
     4        https://bugs.webkit.org/show_bug.cgi?id=204493
     5
     6        Reviewed by Saam Barati.
     7
     8        * test262/expectations.yaml:
     9        Fix double-encoding of test failure output.
     10
    1112019-11-23  Ross Kirsling  <ross.kirsling@sony.com>
    212
  • trunk/JSTests/test262/expectations.yaml

    r252836 r252964  
    1010  strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    1111test/annexB/built-ins/RegExp/prototype/Symbol.split/Symbol.match-getter-recompiles-source.js:
    12   default: 'Test262Error: Expected SameValue(«», «a») to be true'
    13   strict mode: 'Test262Error: Expected SameValue(«», «a») to be true'
     12  default: 'Test262Error: Expected SameValue(«», «a») to be true'
     13  strict mode: 'Test262Error: Expected SameValue(«», «a») to be true'
    1414test/annexB/built-ins/RegExp/prototype/compile/pattern-string-invalid-u.js:
    1515  default: 'Test262Error: invalid pattern: { Expected a SyntaxError to be thrown but no exception was thrown at all'
     
    309309  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    310310test/annexB/language/function-code/block-decl-func-skip-arguments.js:
    311   default: 'Test262Error: Expected SameValue(«function arguments() {}», «[object Arguments]») to be true'
     311  default: 'Test262Error: Expected SameValue(«function arguments() {}», «[object Arguments]») to be true'
    312312test/annexB/language/function-code/block-decl-func-skip-early-err-block.js:
    313313  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    323323  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
    324324test/annexB/language/function-code/block-decl-nested-blocks-with-fun-decl.js:
    325   default: 'Test262Error: Expected SameValue(«2», «1») to be true'
     325  default: 'Test262Error: Expected SameValue(«2», «1») to be true'
    326326test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-block.js:
    327327  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    411411  default: "TypeError: f is not a function. (In 'f()', 'f' is 123)"
    412412test/annexB/language/global-code/block-decl-global-existing-block-fn-no-init.js:
    413   default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
     413  default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
    414414test/annexB/language/global-code/block-decl-global-existing-fn-update.js:
    415   default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
     415  default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
    416416test/annexB/language/global-code/block-decl-global-existing-non-enumerable-global-init.js:
    417417  default: 'Test262Error: descriptor should not be enumerable; descriptor should be configurable'
    418418test/annexB/language/global-code/block-decl-global-init.js:
    419   default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
     419  default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
    420420test/annexB/language/global-code/block-decl-global-no-skip-try.js:
    421   default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
     421  default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
    422422test/annexB/language/global-code/block-decl-global-skip-early-err-block.js:
    423423  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    437437  default: "TypeError: f is not a function. (In 'f()', 'f' is 123)"
    438438test/annexB/language/global-code/if-decl-else-decl-a-global-existing-block-fn-no-init.js:
    439   default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
     439  default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
    440440test/annexB/language/global-code/if-decl-else-decl-a-global-existing-fn-update.js:
    441   default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
     441  default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
    442442test/annexB/language/global-code/if-decl-else-decl-a-global-existing-non-enumerable-global-init.js:
    443443  default: 'Test262Error: descriptor should not be enumerable; descriptor should be configurable'
    444444test/annexB/language/global-code/if-decl-else-decl-a-global-init.js:
    445   default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
     445  default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
    446446test/annexB/language/global-code/if-decl-else-decl-a-global-no-skip-try.js:
    447   default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
     447  default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
    448448test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-block.js:
    449449  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    463463  default: "TypeError: f is not a function. (In 'f()', 'f' is 123)"
    464464test/annexB/language/global-code/if-decl-else-decl-b-global-existing-block-fn-no-init.js:
    465   default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
     465  default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
    466466test/annexB/language/global-code/if-decl-else-decl-b-global-existing-fn-update.js:
    467   default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
     467  default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
    468468test/annexB/language/global-code/if-decl-else-decl-b-global-existing-non-enumerable-global-init.js:
    469469  default: 'Test262Error: descriptor should not be enumerable; descriptor should be configurable'
    470470test/annexB/language/global-code/if-decl-else-decl-b-global-init.js:
    471   default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
     471  default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
    472472test/annexB/language/global-code/if-decl-else-decl-b-global-no-skip-try.js:
    473   default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
     473  default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
    474474test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-block.js:
    475475  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    489489  default: "TypeError: f is not a function. (In 'f()', 'f' is 123)"
    490490test/annexB/language/global-code/if-decl-else-stmt-global-existing-block-fn-no-init.js:
    491   default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
     491  default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
    492492test/annexB/language/global-code/if-decl-else-stmt-global-existing-fn-update.js:
    493   default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
     493  default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
    494494test/annexB/language/global-code/if-decl-else-stmt-global-existing-non-enumerable-global-init.js:
    495495  default: 'Test262Error: descriptor should not be enumerable; descriptor should be configurable'
    496496test/annexB/language/global-code/if-decl-else-stmt-global-init.js:
    497   default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
     497  default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
    498498test/annexB/language/global-code/if-decl-else-stmt-global-no-skip-try.js:
    499   default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
     499  default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
    500500test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-block.js:
    501501  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    515515  default: "TypeError: f is not a function. (In 'f()', 'f' is 123)"
    516516test/annexB/language/global-code/if-decl-no-else-global-existing-block-fn-no-init.js:
    517   default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
     517  default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
    518518test/annexB/language/global-code/if-decl-no-else-global-existing-fn-update.js:
    519   default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
     519  default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
    520520test/annexB/language/global-code/if-decl-no-else-global-existing-non-enumerable-global-init.js:
    521521  default: 'Test262Error: descriptor should not be enumerable; descriptor should be configurable'
    522522test/annexB/language/global-code/if-decl-no-else-global-init.js:
    523   default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
     523  default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
    524524test/annexB/language/global-code/if-decl-no-else-global-no-skip-try.js:
    525   default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
     525  default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
    526526test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-block.js:
    527527  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    541541  default: "TypeError: f is not a function. (In 'f()', 'f' is 123)"
    542542test/annexB/language/global-code/if-stmt-else-decl-global-existing-block-fn-no-init.js:
    543   default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
     543  default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
    544544test/annexB/language/global-code/if-stmt-else-decl-global-existing-fn-update.js:
    545   default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
     545  default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
    546546test/annexB/language/global-code/if-stmt-else-decl-global-existing-non-enumerable-global-init.js:
    547547  default: 'Test262Error: descriptor should not be enumerable; descriptor should be configurable'
    548548test/annexB/language/global-code/if-stmt-else-decl-global-init.js:
    549   default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
     549  default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
    550550test/annexB/language/global-code/if-stmt-else-decl-global-no-skip-try.js:
    551   default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
     551  default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
    552552test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-block.js:
    553553  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    567567  default: "TypeError: f is not a function. (In 'f()', 'f' is 123)"
    568568test/annexB/language/global-code/switch-case-global-existing-block-fn-no-init.js:
    569   default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
     569  default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
    570570test/annexB/language/global-code/switch-case-global-existing-fn-update.js:
    571   default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
     571  default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
    572572test/annexB/language/global-code/switch-case-global-existing-non-enumerable-global-init.js:
    573573  default: 'Test262Error: descriptor should not be enumerable; descriptor should be configurable'
    574574test/annexB/language/global-code/switch-case-global-init.js:
    575   default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
     575  default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
    576576test/annexB/language/global-code/switch-case-global-no-skip-try.js:
    577   default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
     577  default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
    578578test/annexB/language/global-code/switch-case-global-skip-early-err-block.js:
    579579  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    593593  default: "TypeError: f is not a function. (In 'f()', 'f' is 123)"
    594594test/annexB/language/global-code/switch-dflt-global-existing-block-fn-no-init.js:
    595   default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
     595  default: 'Test262Error: Expected SameValue(«function f() {  }», «undefined») to be true'
    596596test/annexB/language/global-code/switch-dflt-global-existing-fn-update.js:
    597   default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
     597  default: 'Test262Error: Expected SameValue(«outer declaration», «inner declaration») to be true'
    598598test/annexB/language/global-code/switch-dflt-global-existing-non-enumerable-global-init.js:
    599599  default: 'Test262Error: descriptor should not be enumerable; descriptor should be configurable'
    600600test/annexB/language/global-code/switch-dflt-global-init.js:
    601   default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
     601  default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(«function f() {  }», «undefined») to be true'
    602602test/annexB/language/global-code/switch-dflt-global-no-skip-try.js:
    603   default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
     603  default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(«function f() { return 123; }», «undefined») to be true'
    604604test/annexB/language/global-code/switch-dflt-global-skip-early-err-block.js:
    605605  default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    623623  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    624624test/built-ins/Array/proto-from-ctor-realm-one.js:
    625   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
    626   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
     625  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
     626  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
    627627test/built-ins/Array/proto-from-ctor-realm-two.js:
    628   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
    629   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
     628  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
     629  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
    630630test/built-ins/Array/proto-from-ctor-realm-zero.js:
    631   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
    632   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
     631  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
     632  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«», «») to be true'
    633633test/built-ins/Array/prototype/filter/target-array-with-non-writable-property.js:
    634634  default: 'TypeError: Attempted to assign to readonly property.'
     
    644644  strict mode: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; obj.pop() === "y". Actual: undefined'
    645645test/built-ins/Array/prototype/pop/clamps-to-integer-limit.js:
    646   default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967294», «9007199254740990») to be true'
    647   strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967294», «9007199254740990») to be true'
     646  default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967294», «9007199254740990») to be true'
     647  strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967294», «9007199254740990») to be true'
    648648test/built-ins/Array/prototype/pop/length-near-integer-limit.js:
    649   default: "Test262Error: arrayLike['9007199254740990'] is returned from pop() Expected SameValue(«undefined», «9007199254740990») to be true"
    650   strict mode: "Test262Error: arrayLike['9007199254740990'] is returned from pop() Expected SameValue(«undefined», «9007199254740990») to be true"
     649  default: "Test262Error: arrayLike['9007199254740990'] is returned from pop() Expected SameValue(«undefined», «9007199254740990») to be true"
     650  strict mode: "Test262Error: arrayLike['9007199254740990'] is returned from pop() Expected SameValue(«undefined», «9007199254740990») to be true"
    651651test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js:
    652652  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    653653  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    654654test/built-ins/Array/prototype/push/clamps-to-integer-limit.js:
    655   default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
    656   strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
     655  default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
     656  strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
    657657test/built-ins/Array/prototype/push/throws-if-integer-limit-exceeded.js:
    658658  default: 'Test262Error: Length is 2**53 - 1 Expected a TypeError to be thrown but no exception was thrown at all'
     
    674674  strict mode: 'Test262Error: #1: var obj = {}; obj.splice = Array.prototype.splice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.splice(4294967295,1); arr.length === 1. Actual: 0'
    675675test/built-ins/Array/prototype/splice/clamps-length-to-integer-limit.js:
    676   default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
    677   strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
     676  default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
     677  strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
    678678test/built-ins/Array/prototype/splice/create-proxy.js:
    679679  default: 'TypeError: Attempted to assign to readonly property.'
    680680  strict mode: 'TypeError: Attempted to assign to readonly property.'
    681681test/built-ins/Array/prototype/splice/create-species-length-exceeding-integer-limit.js:
    682   default: 'Test262Error: length and deleteCount were correctly clamped to 2^53-1 Expected SameValue(«4294967295», «9007199254740991») to be true'
    683   strict mode: 'Test262Error: length and deleteCount were correctly clamped to 2^53-1 Expected SameValue(«4294967295», «9007199254740991») to be true'
     682  default: 'Test262Error: length and deleteCount were correctly clamped to 2^53-1 Expected SameValue(«4294967295», «9007199254740991») to be true'
     683  strict mode: 'Test262Error: length and deleteCount were correctly clamped to 2^53-1 Expected SameValue(«4294967295», «9007199254740991») to be true'
    684684test/built-ins/Array/prototype/splice/length-and-deleteCount-exceeding-integer-limit.js:
    685685  default: "Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. arrayLike['9007199254740989'] and arrayLike['9007199254740990'] are removed"
     
    698698  strict mode: 'Test262Error: Length is 2**53 - 1 Expected a TypeError but got a Error'
    699699test/built-ins/Array/prototype/unshift/clamps-to-integer-limit.js:
    700   default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
    701   strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
     700  default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
     701  strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(«4294967295», «9007199254740991») to be true'
    702702test/built-ins/ArrayBuffer/proto-from-ctor-realm.js:
    703   default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true'
    704   strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true'
     703  default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true'
     704  strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true'
    705705test/built-ins/ArrayBuffer/prototype/byteLength/detached-buffer.js:
    706706  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
     
    716716  strict mode: 'Test262Error: `constructor[Symbol.species]` value is Boolean Expected a TypeError to be thrown but no exception was thrown at all'
    717717test/built-ins/ArrayBuffer/prototype/slice/species-returns-larger-arraybuffer.js:
    718   default: 'Test262Error: Expected SameValue(«8», «10») to be true'
    719   strict mode: 'Test262Error: Expected SameValue(«8», «10») to be true'
     718  default: 'Test262Error: Expected SameValue(«8», «10») to be true'
     719  strict mode: 'Test262Error: Expected SameValue(«8», «10») to be true'
    720720test/built-ins/ArrayBuffer/prototype/slice/species-returns-not-arraybuffer.js:
    721721  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
     
    728728  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    729729test/built-ins/ArrayBuffer/prototype/slice/species.js:
    730   default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «undefined») to be true'
    731   strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «undefined») to be true'
     730  default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «undefined») to be true'
     731  strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «undefined») to be true'
    732732test/built-ins/ArrayIteratorPrototype/next/detach-typedarray-in-progress.js:
    733733  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    734734  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    735735test/built-ins/AsyncFunction/proto-from-ctor-realm.js:
    736   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object AsyncFunction]», «[object AsyncFunction]») to be true'
    737   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object AsyncFunction]», «[object AsyncFunction]») to be true'
     736  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object AsyncFunction]», «[object AsyncFunction]») to be true'
     737  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object AsyncFunction]», «[object AsyncFunction]») to be true'
    738738test/built-ins/AsyncGeneratorFunction/proto-from-ctor-realm.js:
    739   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object AsyncGeneratorFunction]», «[object AsyncGeneratorFunction]») to be true'
    740   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object AsyncGeneratorFunction]», «[object AsyncGeneratorFunction]») to be true'
     739  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object AsyncGeneratorFunction]», «[object AsyncGeneratorFunction]») to be true'
     740  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object AsyncGeneratorFunction]», «[object AsyncGeneratorFunction]») to be true'
    741741test/built-ins/BigInt/constructor-integer.js:
    742742  default: 'RangeError: Not safe integer'
    743743  strict mode: 'RangeError: Not safe integer'
    744744test/built-ins/Boolean/proto-from-ctor-realm.js:
    745   default: 'Test262Error: Expected SameValue(«false», «false») to be true'
    746   strict mode: 'Test262Error: Expected SameValue(«false», «false») to be true'
     745  default: 'Test262Error: Expected SameValue(«false», «false») to be true'
     746  strict mode: 'Test262Error: Expected SameValue(«false», «false») to be true'
    747747test/built-ins/DataView/custom-proto-access-detaches-buffer.js:
    748748  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
     
    755755  strict mode: 'Test262Error: descriptor value should be 1'
    756756test/built-ins/DataView/proto-from-ctor-realm.js:
    757   default: 'Test262Error: Expected SameValue(«[object DataView]», «[object DataView]») to be true'
    758   strict mode: 'Test262Error: Expected SameValue(«[object DataView]», «[object DataView]») to be true'
     757  default: 'Test262Error: Expected SameValue(«[object DataView]», «[object DataView]») to be true'
     758  strict mode: 'Test262Error: Expected SameValue(«[object DataView]», «[object DataView]») to be true'
    759759test/built-ins/DataView/prototype/byteLength/detached-buffer.js:
    760760  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
     
    860860  strict mode: 'Test262Error: Expected a TypeError but got a RangeError'
    861861test/built-ins/Date/proto-from-ctor-realm-one.js:
    862   default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    863   strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     862  default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     863  strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    864864test/built-ins/Date/proto-from-ctor-realm-two.js:
    865   default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    866   strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     865  default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     866  strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    867867test/built-ins/Date/proto-from-ctor-realm-zero.js:
    868   default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    869   strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     868  default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     869  strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    870870test/built-ins/Error/proto-from-ctor-realm.js:
    871   default: 'Test262Error: Expected SameValue(«Error», «Error») to be true'
    872   strict mode: 'Test262Error: Expected SameValue(«Error», «Error») to be true'
     871  default: 'Test262Error: Expected SameValue(«Error», «Error») to be true'
     872  strict mode: 'Test262Error: Expected SameValue(«Error», «Error») to be true'
    873873test/built-ins/Function/call-bind-this-realm-undef.js:
    874   default: 'Test262Error: implicit undefined Expected SameValue(«[object global]», «[object Undefined]») to be true'
    875   strict mode: 'Test262Error: implicit undefined Expected SameValue(«[object global]», «[object Undefined]») to be true'
     874  default: 'Test262Error: implicit undefined Expected SameValue(«[object global]», «[object Undefined]») to be true'
     875  strict mode: 'Test262Error: implicit undefined Expected SameValue(«[object global]», «[object Undefined]») to be true'
    876876test/built-ins/Function/internals/Call/class-ctor-realm.js:
    877877  default: 'Test262Error: Expected a TypeError but got a TypeError'
     
    890890  strict mode: 'Test262Error: Expected a ReferenceError but got a ReferenceError'
    891891test/built-ins/Function/proto-from-ctor-realm.js:
    892   default: 'Test262Error: Expected SameValue(«function () {'
    893   strict mode: 'Test262Error: Expected SameValue(«function () {'
     892  default: 'Test262Error: Expected SameValue(«function () {'
     893  strict mode: 'Test262Error: Expected SameValue(«function () {'
    894894test/built-ins/Function/prototype/bind/length-exceeds-int32.js:
    895   default: 'Test262Error: Expected SameValue(«0», «2147483648») to be true'
    896   strict mode: 'Test262Error: Expected SameValue(«0», «2147483648») to be true'
     895  default: 'Test262Error: Expected SameValue(«0», «2147483648») to be true'
     896  strict mode: 'Test262Error: Expected SameValue(«0», «2147483648») to be true'
    897897test/built-ins/Function/prototype/bind/proto-from-ctor-realm.js:
    898   default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    899   strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     898  default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     899  strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    900900test/built-ins/Function/prototype/toString/AsyncFunction.js:
    901901  default: "SyntaxError: Unexpected token ';'. Expected a ')' or a ',' after a parameter declaration."
     
    10341034  strict mode: "Test262Error: Conforms to NativeFunction Syntax: 'function a(\\u{62}, \\u0063) { \\u0062 = \\u{00063}; return b; }'.(function \\u0061(\\u{62}, \\u0063) { \\u0062 = \\u{00063}; return b; })"
    10351035test/built-ins/GeneratorFunction/proto-from-ctor-realm.js:
    1036   default: 'Test262Error: Expected SameValue(«[object GeneratorFunction]», «[object GeneratorFunction]») to be true'
    1037   strict mode: 'Test262Error: Expected SameValue(«[object GeneratorFunction]», «[object GeneratorFunction]») to be true'
     1036  default: 'Test262Error: Expected SameValue(«[object GeneratorFunction]», «[object GeneratorFunction]») to be true'
     1037  strict mode: 'Test262Error: Expected SameValue(«[object GeneratorFunction]», «[object GeneratorFunction]») to be true'
    10381038test/built-ins/Map/proto-from-ctor-realm.js:
    1039   default: 'Test262Error: Expected SameValue(«[object Map]», «[object Map]») to be true'
    1040   strict mode: 'Test262Error: Expected SameValue(«[object Map]», «[object Map]») to be true'
     1039  default: 'Test262Error: Expected SameValue(«[object Map]», «[object Map]») to be true'
     1040  strict mode: 'Test262Error: Expected SameValue(«[object Map]», «[object Map]») to be true'
    10411041test/built-ins/NativeErrors/EvalError/proto-from-ctor-realm.js:
    1042   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«EvalError», «EvalError») to be true'
    1043   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«EvalError», «EvalError») to be true'
     1042  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«EvalError», «EvalError») to be true'
     1043  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«EvalError», «EvalError») to be true'
    10441044test/built-ins/NativeErrors/RangeError/proto-from-ctor-realm.js:
    1045   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«RangeError», «RangeError») to be true'
    1046   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«RangeError», «RangeError») to be true'
     1045  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«RangeError», «RangeError») to be true'
     1046  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«RangeError», «RangeError») to be true'
    10471047test/built-ins/NativeErrors/ReferenceError/proto-from-ctor-realm.js:
    1048   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«ReferenceError», «ReferenceError») to be true'
    1049   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«ReferenceError», «ReferenceError») to be true'
     1048  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«ReferenceError», «ReferenceError») to be true'
     1049  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«ReferenceError», «ReferenceError») to be true'
    10501050test/built-ins/NativeErrors/SyntaxError/proto-from-ctor-realm.js:
    1051   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«SyntaxError», «SyntaxError») to be true'
    1052   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«SyntaxError», «SyntaxError») to be true'
     1051  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«SyntaxError», «SyntaxError») to be true'
     1052  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«SyntaxError», «SyntaxError») to be true'
    10531053test/built-ins/NativeErrors/TypeError/proto-from-ctor-realm.js:
    1054   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«TypeError», «TypeError») to be true'
    1055   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«TypeError», «TypeError») to be true'
     1054  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«TypeError», «TypeError») to be true'
     1055  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«TypeError», «TypeError») to be true'
    10561056test/built-ins/NativeErrors/URIError/proto-from-ctor-realm.js:
    1057   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«URIError», «URIError») to be true'
    1058   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«URIError», «URIError») to be true'
     1057  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«URIError», «URIError») to be true'
     1058  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«URIError», «URIError») to be true'
    10591059test/built-ins/Number/bigint-conversion.js:
    10601060  default: "TypeError: Conversion from 'BigInt' to 'number' is not allowed."
    10611061  strict mode: "TypeError: Conversion from 'BigInt' to 'number' is not allowed."
    10621062test/built-ins/Number/proto-from-ctor-realm.js:
    1063   default: 'Test262Error: Expected SameValue(«0», «0») to be true'
    1064   strict mode: 'Test262Error: Expected SameValue(«0», «0») to be true'
     1063  default: 'Test262Error: Expected SameValue(«0», «0») to be true'
     1064  strict mode: 'Test262Error: Expected SameValue(«0», «0») to be true'
    10651065test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-arguments.js:
    1066   default: 'Test262Error: Expected SameValue(«null», «[object Arguments]») to be true'
     1066  default: 'Test262Error: Expected SameValue(«null», «[object Arguments]») to be true'
    10671067test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-caller.js:
    1068   default: 'Test262Error: Expected SameValue(«null», «function g() {'
     1068  default: 'Test262Error: Expected SameValue(«null», «function g() {'
    10691069test/built-ins/Object/internals/DefineOwnProperty/consistent-value-regexp-dollar1.js:
    1070   default: 'Test262Error: Expected SameValue(«», «x») to be true'
    1071   strict mode: 'Test262Error: Expected SameValue(«», «x») to be true'
     1070  default: 'Test262Error: Expected SameValue(«», «x») to be true'
     1071  strict mode: 'Test262Error: Expected SameValue(«», «x») to be true'
    10721072test/built-ins/Object/keys/property-traps-order-with-proxied-array.js:
    10731073  default: 'Test262Error: Expected [ownKeys, getOwnPropertyDescriptor] and [ownKeys] to have the same contents. '
     
    10801080  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    10811081test/built-ins/Object/proto-from-ctor-realm.js:
    1082   default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    1083   strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     1082  default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     1083  strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    10841084test/built-ins/Object/prototype/toString/proxy-function.js:
    1085   default: 'Test262Error: function proxy Expected SameValue(«[object Object]», «[object Function]») to be true'
    1086   strict mode: 'Test262Error: function proxy Expected SameValue(«[object Object]», «[object Function]») to be true'
     1085  default: 'Test262Error: function proxy Expected SameValue(«[object Object]», «[object Function]») to be true'
     1086  strict mode: 'Test262Error: function proxy Expected SameValue(«[object Object]», «[object Function]») to be true'
    10871087test/built-ins/Object/prototype/toString/symbol-tag-non-str-builtin.js:
    1088   default: 'Test262Error: Expected SameValue(«[object Math]», «[object Object]») to be true'
    1089   strict mode: 'Test262Error: Expected SameValue(«[object Math]», «[object Object]») to be true'
     1088  default: 'Test262Error: Expected SameValue(«[object Math]», «[object Object]») to be true'
     1089  strict mode: 'Test262Error: Expected SameValue(«[object Math]», «[object Object]») to be true'
    10901090test/built-ins/Object/prototype/toString/symbol-tag-non-str-proxy-function.js:
    1091   default: 'Test262Error: generator function proxy without Symbol.toStringTag Expected SameValue(«[object Object]», «[object Function]») to be true'
    1092   strict mode: 'Test262Error: generator function proxy without Symbol.toStringTag Expected SameValue(«[object Object]», «[object Function]») to be true'
     1091  default: 'Test262Error: generator function proxy without Symbol.toStringTag Expected SameValue(«[object Object]», «[object Function]») to be true'
     1092  strict mode: 'Test262Error: generator function proxy without Symbol.toStringTag Expected SameValue(«[object Object]», «[object Function]») to be true'
    10931093test/built-ins/Promise/all/invoke-resolve-get-error-close.js:
    1094   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    1095   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1094  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1095  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    10961096test/built-ins/Promise/all/resolve-element-function-nonconstructor.js:
    10971097  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    10981098  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    10991099test/built-ins/Promise/allSettled/invoke-resolve-get-error-close.js:
    1100   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    1101   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1100  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1101  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    11021102test/built-ins/Promise/allSettled/reject-element-function-nonconstructor.js:
    11031103  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
     
    11071107  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    11081108test/built-ins/Promise/executor-function-nonconstructor.js:
    1109   default: 'Test262Error: Expected SameValue(«true», «false») to be true'
    1110   strict mode: 'Test262Error: Expected SameValue(«true», «false») to be true'
     1109  default: 'Test262Error: Expected SameValue(«true», «false») to be true'
     1110  strict mode: 'Test262Error: Expected SameValue(«true», «false») to be true'
    11111111test/built-ins/Promise/proto-from-ctor-realm.js:
    1112   default: 'Test262Error: Expected SameValue(«[object Promise]», «[object Promise]») to be true'
    1113   strict mode: 'Test262Error: Expected SameValue(«[object Promise]», «[object Promise]») to be true'
     1112  default: 'Test262Error: Expected SameValue(«[object Promise]», «[object Promise]») to be true'
     1113  strict mode: 'Test262Error: Expected SameValue(«[object Promise]», «[object Promise]») to be true'
    11141114test/built-ins/Promise/race/invoke-resolve-get-error-close.js:
    1115   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    1116   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1115  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1116  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    11171117test/built-ins/Promise/reject-function-nonconstructor.js:
    11181118  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
     
    11221122  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    11231123test/built-ins/Proxy/apply/arguments-realm.js:
    1124   default: 'Test262Error: Expected SameValue(«function Array() {'
    1125   strict mode: 'Test262Error: Expected SameValue(«function Array() {'
     1124  default: 'Test262Error: Expected SameValue(«function Array() {'
     1125  strict mode: 'Test262Error: Expected SameValue(«function Array() {'
    11261126test/built-ins/Proxy/apply/null-handler-realm.js:
    11271127  default: 'Test262Error: Expected a TypeError but got a TypeError'
     
    11311131  strict mode: 'Test262Error: Expected a TypeError but got a TypeError'
    11321132test/built-ins/Proxy/construct/arguments-realm.js:
    1133   default: 'Test262Error: Expected SameValue(«function Array() {'
    1134   strict mode: 'Test262Error: Expected SameValue(«function Array() {'
     1133  default: 'Test262Error: Expected SameValue(«function Array() {'
     1134  strict mode: 'Test262Error: Expected SameValue(«function Array() {'
    11351135test/built-ins/Proxy/construct/null-handler-realm.js:
    11361136  default: 'Test262Error: Expected a TypeError but got a TypeError'
     
    11581158  strict mode: 'Test262Error: Expected a TypeError but got a TypeError'
    11591159test/built-ins/RegExp/named-groups/groups-object-subclass-sans.js:
    1160   default: 'Test262Error: Expected SameValue(«b», «$<a>») to be true'
    1161   strict mode: 'Test262Error: Expected SameValue(«b», «$<a>») to be true'
     1160  default: 'Test262Error: Expected SameValue(«b», «$<a>») to be true'
     1161  strict mode: 'Test262Error: Expected SameValue(«b», «$<a>») to be true'
    11621162test/built-ins/RegExp/named-groups/groups-object-subclass.js:
    1163   default: 'Test262Error: Expected SameValue(«b», «$<a>») to be true'
    1164   strict mode: 'Test262Error: Expected SameValue(«b», «$<a>») to be true'
     1163  default: 'Test262Error: Expected SameValue(«b», «$<a>») to be true'
     1164  strict mode: 'Test262Error: Expected SameValue(«b», «$<a>») to be true'
    11651165test/built-ins/RegExp/named-groups/string-replace-nocaptures.js:
    1166   default: 'Test262Error: Expected SameValue(«$<snd>$<fst>cd», «$<$<fst>cd») to be true'
    1167   strict mode: 'Test262Error: Expected SameValue(«$<snd>$<fst>cd», «$<$<fst>cd») to be true'
     1166  default: 'Test262Error: Expected SameValue(«$<snd>$<fst>cd», «$<$<fst>cd») to be true'
     1167  strict mode: 'Test262Error: Expected SameValue(«$<snd>$<fst>cd», «$<$<fst>cd») to be true'
    11681168test/built-ins/RegExp/named-groups/unicode-property-names.js:
    11691169  default: 'SyntaxError: Invalid regular expression: invalid group specifier name'
     
    11821182  strict mode: 'Test262: This statement should not be evaluated.'
    11831183test/built-ins/RegExp/property-escapes/generated/Alphabetic.js:
    1184   default: 'Test262Error: `\p{Alphabetic}` should match U+001CFA (`ᳺ`)'
    1185   strict mode: 'Test262Error: `\p{Alphabetic}` should match U+001CFA (`ᳺ`)'
     1184  default: 'Test262Error: `\p{Alphabetic}` should match U+001CFA (``)'
     1185  strict mode: 'Test262Error: `\p{Alphabetic}` should match U+001CFA (``)'
    11861186test/built-ins/RegExp/property-escapes/generated/Assigned.js:
    1187   default: 'Test262Error: `\p{Assigned}` should match U+01E2FF (`𞋿`)'
    1188   strict mode: 'Test262Error: `\p{Assigned}` should match U+01E2FF (`𞋿`)'
     1187  default: 'Test262Error: `\p{Assigned}` should match U+01E2FF (`𞋿`)'
     1188  strict mode: 'Test262Error: `\p{Assigned}` should match U+01E2FF (`𞋿`)'
    11891189test/built-ins/RegExp/property-escapes/generated/Case_Ignorable.js:
    1190   default: 'Test262Error: `\p{Case_Ignorable}` should match U+0119E0 (`𑧠`)'
    1191   strict mode: 'Test262Error: `\p{Case_Ignorable}` should match U+0119E0 (`𑧠`)'
     1190  default: 'Test262Error: `\p{Case_Ignorable}` should match U+0119E0 (`𑧠`)'
     1191  strict mode: 'Test262Error: `\p{Case_Ignorable}` should match U+0119E0 (`𑧠`)'
    11921192test/built-ins/RegExp/property-escapes/generated/Cased.js:
    1193   default: 'Test262Error: `\p{Cased}` should match U+00A7BA (`Ꞻ`)'
    1194   strict mode: 'Test262Error: `\p{Cased}` should match U+00A7BA (`Ꞻ`)'
     1193  default: 'Test262Error: `\p{Cased}` should match U+00A7BA (``)'
     1194  strict mode: 'Test262Error: `\p{Cased}` should match U+00A7BA (``)'
    11951195test/built-ins/RegExp/property-escapes/generated/Changes_When_Casefolded.js:
    1196   default: 'Test262Error: `\p{Changes_When_Casefolded}` should match U+00A7BA (`Ꞻ`)'
    1197   strict mode: 'Test262Error: `\p{Changes_When_Casefolded}` should match U+00A7BA (`Ꞻ`)'
     1196  default: 'Test262Error: `\p{Changes_When_Casefolded}` should match U+00A7BA (``)'
     1197  strict mode: 'Test262Error: `\p{Changes_When_Casefolded}` should match U+00A7BA (``)'
    11981198test/built-ins/RegExp/property-escapes/generated/Changes_When_Casemapped.js:
    1199   default: 'Test262Error: `\p{Changes_When_Casemapped}` should match U+001D8E (`ᶎ`)'
    1200   strict mode: 'Test262Error: `\p{Changes_When_Casemapped}` should match U+001D8E (`ᶎ`)'
     1199  default: 'Test262Error: `\p{Changes_When_Casemapped}` should match U+001D8E (``)'
     1200  strict mode: 'Test262Error: `\p{Changes_When_Casemapped}` should match U+001D8E (``)'
    12011201test/built-ins/RegExp/property-escapes/generated/Changes_When_Lowercased.js:
    1202   default: 'Test262Error: `\p{Changes_When_Lowercased}` should match U+00A7BA (`Ꞻ`)'
    1203   strict mode: 'Test262Error: `\p{Changes_When_Lowercased}` should match U+00A7BA (`Ꞻ`)'
     1202  default: 'Test262Error: `\p{Changes_When_Lowercased}` should match U+00A7BA (``)'
     1203  strict mode: 'Test262Error: `\p{Changes_When_Lowercased}` should match U+00A7BA (``)'
    12041204test/built-ins/RegExp/property-escapes/generated/Changes_When_NFKC_Casefolded.js:
    1205   default: 'Test262Error: `\p{Changes_When_NFKC_Casefolded}` should match U+00A7BA (`Ꞻ`)'
    1206   strict mode: 'Test262Error: `\p{Changes_When_NFKC_Casefolded}` should match U+00A7BA (`Ꞻ`)'
     1205  default: 'Test262Error: `\p{Changes_When_NFKC_Casefolded}` should match U+00A7BA (``)'
     1206  strict mode: 'Test262Error: `\p{Changes_When_NFKC_Casefolded}` should match U+00A7BA (``)'
    12071207test/built-ins/RegExp/property-escapes/generated/Changes_When_Titlecased.js:
    1208   default: 'Test262Error: `\p{Changes_When_Titlecased}` should match U+001D8E (`ᶎ`)'
    1209   strict mode: 'Test262Error: `\p{Changes_When_Titlecased}` should match U+001D8E (`ᶎ`)'
     1208  default: 'Test262Error: `\p{Changes_When_Titlecased}` should match U+001D8E (``)'
     1209  strict mode: 'Test262Error: `\p{Changes_When_Titlecased}` should match U+001D8E (``)'
    12101210test/built-ins/RegExp/property-escapes/generated/Changes_When_Uppercased.js:
    1211   default: 'Test262Error: `\p{Changes_When_Uppercased}` should match U+001D8E (`ᶎ`)'
    1212   strict mode: 'Test262Error: `\p{Changes_When_Uppercased}` should match U+001D8E (`ᶎ`)'
     1211  default: 'Test262Error: `\p{Changes_When_Uppercased}` should match U+001D8E (``)'
     1212  strict mode: 'Test262Error: `\p{Changes_When_Uppercased}` should match U+001D8E (``)'
    12131213test/built-ins/RegExp/property-escapes/generated/Diacritic.js:
    1214   default: 'Test262Error: `\p{Diacritic}` should match U+000EBA (`຺`)'
    1215   strict mode: 'Test262Error: `\p{Diacritic}` should match U+000EBA (`຺`)'
     1214  default: 'Test262Error: `\p{Diacritic}` should match U+000EBA (``)'
     1215  strict mode: 'Test262Error: `\p{Diacritic}` should match U+000EBA (``)'
    12161216test/built-ins/RegExp/property-escapes/generated/Emoji.js:
    1217   default: 'Test262Error: `\p{Emoji}` should match U+01F6D5 (`🛕`)'
    1218   strict mode: 'Test262Error: `\p{Emoji}` should match U+01F6D5 (`🛕`)'
     1217  default: 'Test262Error: `\p{Emoji}` should match U+01F6D5 (`🛕`)'
     1218  strict mode: 'Test262Error: `\p{Emoji}` should match U+01F6D5 (`🛕`)'
    12191219test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier_Base.js:
    1220   default: 'Test262Error: `\p{Emoji_Modifier_Base}` should match U+01F48F (`💏`)'
    1221   strict mode: 'Test262Error: `\p{Emoji_Modifier_Base}` should match U+01F48F (`💏`)'
     1220  default: 'Test262Error: `\p{Emoji_Modifier_Base}` should match U+01F48F (`💏`)'
     1221  strict mode: 'Test262Error: `\p{Emoji_Modifier_Base}` should match U+01F48F (`💏`)'
    12221222test/built-ins/RegExp/property-escapes/generated/Emoji_Presentation.js:
    1223   default: 'Test262Error: `\p{Emoji_Presentation}` should match U+01F6D5 (`🛕`)'
    1224   strict mode: 'Test262Error: `\p{Emoji_Presentation}` should match U+01F6D5 (`🛕`)'
     1223  default: 'Test262Error: `\p{Emoji_Presentation}` should match U+01F6D5 (`🛕`)'
     1224  strict mode: 'Test262Error: `\p{Emoji_Presentation}` should match U+01F6D5 (`🛕`)'
    12251225test/built-ins/RegExp/property-escapes/generated/Extender.js:
    1226   default: 'Test262Error: `\p{Extender}` should match U+016FE3 (`𖿣`)'
    1227   strict mode: 'Test262Error: `\p{Extender}` should match U+016FE3 (`𖿣`)'
     1226  default: 'Test262Error: `\p{Extender}` should match U+016FE3 (`𖿣`)'
     1227  strict mode: 'Test262Error: `\p{Extender}` should match U+016FE3 (`𖿣`)'
    12281228test/built-ins/RegExp/property-escapes/generated/General_Category_-_Cased_Letter.js:
    1229   default: 'Test262Error: `\p{General_Category=Cased_Letter}` should match U+00A7BA (`Ꞻ`)'
    1230   strict mode: 'Test262Error: `\p{General_Category=Cased_Letter}` should match U+00A7BA (`Ꞻ`)'
     1229  default: 'Test262Error: `\p{General_Category=Cased_Letter}` should match U+00A7BA (``)'
     1230  strict mode: 'Test262Error: `\p{General_Category=Cased_Letter}` should match U+00A7BA (``)'
    12311231test/built-ins/RegExp/property-escapes/generated/General_Category_-_Currency_Symbol.js:
    1232   default: 'Test262Error: `\p{General_Category=Currency_Symbol}` should match U+01E2FF (`𞋿`)'
    1233   strict mode: 'Test262Error: `\p{General_Category=Currency_Symbol}` should match U+01E2FF (`𞋿`)'
     1232  default: 'Test262Error: `\p{General_Category=Currency_Symbol}` should match U+01E2FF (`𞋿`)'
     1233  strict mode: 'Test262Error: `\p{General_Category=Currency_Symbol}` should match U+01E2FF (`𞋿`)'
    12341234test/built-ins/RegExp/property-escapes/generated/General_Category_-_Decimal_Number.js:
    1235   default: 'Test262Error: `\p{General_Category=Decimal_Number}` should match U+01E140 (`ðž
    1236 €`)'
    1237   strict mode: 'Test262Error: `\p{General_Category=Decimal_Number}` should match U+01E140 (`ðž
    1238 €`)'
     1235  default: 'Test262Error: `\p{General_Category=Decimal_Number}` should match U+01E140 (`𞅀`)'
     1236  strict mode: 'Test262Error: `\p{General_Category=Decimal_Number}` should match U+01E140 (`𞅀`)'
    12391237test/built-ins/RegExp/property-escapes/generated/General_Category_-_Format.js:
    1240   default: 'Test262Error: `\p{General_Category=Format}` should match U+013430 (`𓐰`)'
    1241   strict mode: 'Test262Error: `\p{General_Category=Format}` should match U+013430 (`𓐰`)'
     1238  default: 'Test262Error: `\p{General_Category=Format}` should match U+013430 (`𓐰`)'
     1239  strict mode: 'Test262Error: `\p{General_Category=Format}` should match U+013430 (`𓐰`)'
    12421240test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter.js:
    1243   default: 'Test262Error: `\p{General_Category=Letter}` should match U+001CFA (`ᳺ`)'
    1244   strict mode: 'Test262Error: `\p{General_Category=Letter}` should match U+001CFA (`ᳺ`)'
     1241  default: 'Test262Error: `\p{General_Category=Letter}` should match U+001CFA (``)'
     1242  strict mode: 'Test262Error: `\p{General_Category=Letter}` should match U+001CFA (``)'
    12451243test/built-ins/RegExp/property-escapes/generated/General_Category_-_Lowercase_Letter.js:
    1246   default: 'Test262Error: `\p{General_Category=Lowercase_Letter}` should match U+00A7BB (`ꞻ`)'
    1247   strict mode: 'Test262Error: `\p{General_Category=Lowercase_Letter}` should match U+00A7BB (`ꞻ`)'
     1244  default: 'Test262Error: `\p{General_Category=Lowercase_Letter}` should match U+00A7BB (``)'
     1245  strict mode: 'Test262Error: `\p{General_Category=Lowercase_Letter}` should match U+00A7BB (``)'
    12481246test/built-ins/RegExp/property-escapes/generated/General_Category_-_Mark.js:
    1249   default: 'Test262Error: `\p{General_Category=Mark}` should match U+0119E4 (`𑧤`)'
    1250   strict mode: 'Test262Error: `\p{General_Category=Mark}` should match U+0119E4 (`𑧤`)'
     1247  default: 'Test262Error: `\p{General_Category=Mark}` should match U+0119E4 (`𑧤`)'
     1248  strict mode: 'Test262Error: `\p{General_Category=Mark}` should match U+0119E4 (`𑧤`)'
    12511249test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Letter.js:
    1252   default: 'Test262Error: `\p{General_Category=Modifier_Letter}` should match U+016FE3 (`𖿣`)'
    1253   strict mode: 'Test262Error: `\p{General_Category=Modifier_Letter}` should match U+016FE3 (`𖿣`)'
     1250  default: 'Test262Error: `\p{General_Category=Modifier_Letter}` should match U+016FE3 (`𖿣`)'
     1251  strict mode: 'Test262Error: `\p{General_Category=Modifier_Letter}` should match U+016FE3 (`𖿣`)'
    12541252test/built-ins/RegExp/property-escapes/generated/General_Category_-_Nonspacing_Mark.js:
    1255   default: 'Test262Error: `\p{General_Category=Nonspacing_Mark}` should match U+0119E0 (`𑧠`)'
    1256   strict mode: 'Test262Error: `\p{General_Category=Nonspacing_Mark}` should match U+0119E0 (`𑧠`)'
     1253  default: 'Test262Error: `\p{General_Category=Nonspacing_Mark}` should match U+0119E0 (`𑧠`)'
     1254  strict mode: 'Test262Error: `\p{General_Category=Nonspacing_Mark}` should match U+0119E0 (`𑧠`)'
    12571255test/built-ins/RegExp/property-escapes/generated/General_Category_-_Number.js:
    1258   default: 'Test262Error: `\p{General_Category=Number}` should match U+011FC0 (`𑿀`)'
    1259   strict mode: 'Test262Error: `\p{General_Category=Number}` should match U+011FC0 (`𑿀`)'
     1256  default: 'Test262Error: `\p{General_Category=Number}` should match U+011FC0 (`𑿀`)'
     1257  strict mode: 'Test262Error: `\p{General_Category=Number}` should match U+011FC0 (`𑿀`)'
    12601258test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other.js:
    1261   default: 'Test262Error: `\P{General_Category=Other}` should match U+01E2FF (`𞋿`)'
    1262   strict mode: 'Test262Error: `\P{General_Category=Other}` should match U+01E2FF (`𞋿`)'
     1259  default: 'Test262Error: `\P{General_Category=Other}` should match U+01E2FF (`𞋿`)'
     1260  strict mode: 'Test262Error: `\P{General_Category=Other}` should match U+01E2FF (`𞋿`)'
    12631261test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Letter.js:
    1264   default: 'Test262Error: `\p{General_Category=Other_Letter}` should match U+001CFA (`ᳺ`)'
    1265   strict mode: 'Test262Error: `\p{General_Category=Other_Letter}` should match U+001CFA (`ᳺ`)'
     1262  default: 'Test262Error: `\p{General_Category=Other_Letter}` should match U+001CFA (``)'
     1263  strict mode: 'Test262Error: `\p{General_Category=Other_Letter}` should match U+001CFA (``)'
    12661264test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Number.js:
    1267   default: 'Test262Error: `\p{General_Category=Other_Number}` should match U+011FC0 (`𑿀`)'
    1268   strict mode: 'Test262Error: `\p{General_Category=Other_Number}` should match U+011FC0 (`𑿀`)'
     1265  default: 'Test262Error: `\p{General_Category=Other_Number}` should match U+011FC0 (`𑿀`)'
     1266  strict mode: 'Test262Error: `\p{General_Category=Other_Number}` should match U+011FC0 (`𑿀`)'
    12691267test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Punctuation.js:
    1270   default: 'Test262Error: `\p{General_Category=Other_Punctuation}` should match U+000C77 (`à±·`)'
    1271   strict mode: 'Test262Error: `\p{General_Category=Other_Punctuation}` should match U+000C77 (`à±·`)'
     1268  default: 'Test262Error: `\p{General_Category=Other_Punctuation}` should match U+000C77 (``)'
     1269  strict mode: 'Test262Error: `\p{General_Category=Other_Punctuation}` should match U+000C77 (``)'
    12721270test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Symbol.js:
    1273   default: 'Test262Error: `\p{General_Category=Other_Symbol}` should match U+00166D (`᙭`)'
    1274   strict mode: 'Test262Error: `\p{General_Category=Other_Symbol}` should match U+00166D (`᙭`)'
     1271  default: 'Test262Error: `\p{General_Category=Other_Symbol}` should match U+00166D (``)'
     1272  strict mode: 'Test262Error: `\p{General_Category=Other_Symbol}` should match U+00166D (``)'
    12751273test/built-ins/RegExp/property-escapes/generated/General_Category_-_Punctuation.js:
    1276   default: 'Test262Error: `\p{General_Category=Punctuation}` should match U+000C77 (`à±·`)'
    1277   strict mode: 'Test262Error: `\p{General_Category=Punctuation}` should match U+000C77 (`à±·`)'
     1274  default: 'Test262Error: `\p{General_Category=Punctuation}` should match U+000C77 (``)'
     1275  strict mode: 'Test262Error: `\p{General_Category=Punctuation}` should match U+000C77 (``)'
    12781276test/built-ins/RegExp/property-escapes/generated/General_Category_-_Spacing_Mark.js:
    1279   default: 'Test262Error: `\p{General_Category=Spacing_Mark}` should match U+0119E4 (`𑧤`)'
    1280   strict mode: 'Test262Error: `\p{General_Category=Spacing_Mark}` should match U+0119E4 (`𑧤`)'
     1277  default: 'Test262Error: `\p{General_Category=Spacing_Mark}` should match U+0119E4 (`𑧤`)'
     1278  strict mode: 'Test262Error: `\p{General_Category=Spacing_Mark}` should match U+0119E4 (`𑧤`)'
    12811279test/built-ins/RegExp/property-escapes/generated/General_Category_-_Symbol.js:
    1282   default: 'Test262Error: `\p{General_Category=Symbol}` should match U+00166D (`᙭`)'
    1283   strict mode: 'Test262Error: `\p{General_Category=Symbol}` should match U+00166D (`᙭`)'
     1280  default: 'Test262Error: `\p{General_Category=Symbol}` should match U+00166D (``)'
     1281  strict mode: 'Test262Error: `\p{General_Category=Symbol}` should match U+00166D (``)'
    12841282test/built-ins/RegExp/property-escapes/generated/General_Category_-_Unassigned.js:
    1285   default: 'Test262Error: `\P{General_Category=Unassigned}` should match U+01E2FF (`𞋿`)'
    1286   strict mode: 'Test262Error: `\P{General_Category=Unassigned}` should match U+01E2FF (`𞋿`)'
     1283  default: 'Test262Error: `\P{General_Category=Unassigned}` should match U+01E2FF (`𞋿`)'
     1284  strict mode: 'Test262Error: `\P{General_Category=Unassigned}` should match U+01E2FF (`𞋿`)'
    12871285test/built-ins/RegExp/property-escapes/generated/General_Category_-_Uppercase_Letter.js:
    1288   default: 'Test262Error: `\p{General_Category=Uppercase_Letter}` should match U+00A7BA (`Ꞻ`)'
    1289   strict mode: 'Test262Error: `\p{General_Category=Uppercase_Letter}` should match U+00A7BA (`Ꞻ`)'
     1286  default: 'Test262Error: `\p{General_Category=Uppercase_Letter}` should match U+00A7BA (``)'
     1287  strict mode: 'Test262Error: `\p{General_Category=Uppercase_Letter}` should match U+00A7BA (``)'
    12901288test/built-ins/RegExp/property-escapes/generated/Grapheme_Base.js:
    1291   default: 'Test262Error: `\p{Grapheme_Base}` should match U+001CFA (`ᳺ`)'
    1292   strict mode: 'Test262Error: `\p{Grapheme_Base}` should match U+001CFA (`ᳺ`)'
     1289  default: 'Test262Error: `\p{Grapheme_Base}` should match U+001CFA (``)'
     1290  strict mode: 'Test262Error: `\p{Grapheme_Base}` should match U+001CFA (``)'
    12931291test/built-ins/RegExp/property-escapes/generated/Grapheme_Extend.js:
    1294   default: 'Test262Error: `\p{Grapheme_Extend}` should match U+0119E0 (`𑧠`)'
    1295   strict mode: 'Test262Error: `\p{Grapheme_Extend}` should match U+0119E0 (`𑧠`)'
     1292  default: 'Test262Error: `\p{Grapheme_Extend}` should match U+0119E0 (`𑧠`)'
     1293  strict mode: 'Test262Error: `\p{Grapheme_Extend}` should match U+0119E0 (`𑧠`)'
    12961294test/built-ins/RegExp/property-escapes/generated/ID_Continue.js:
    1297   default: 'Test262Error: `\p{ID_Continue}` should match U+016FE3 (`𖿣`)'
    1298   strict mode: 'Test262Error: `\p{ID_Continue}` should match U+016FE3 (`𖿣`)'
     1295  default: 'Test262Error: `\p{ID_Continue}` should match U+016FE3 (`𖿣`)'
     1296  strict mode: 'Test262Error: `\p{ID_Continue}` should match U+016FE3 (`𖿣`)'
    12991297test/built-ins/RegExp/property-escapes/generated/ID_Start.js:
    1300   default: 'Test262Error: `\p{ID_Start}` should match U+001CFA (`ᳺ`)'
    1301   strict mode: 'Test262Error: `\p{ID_Start}` should match U+001CFA (`ᳺ`)'
     1298  default: 'Test262Error: `\p{ID_Start}` should match U+001CFA (``)'
     1299  strict mode: 'Test262Error: `\p{ID_Start}` should match U+001CFA (``)'
    13021300test/built-ins/RegExp/property-escapes/generated/Ideographic.js:
    1303   default: 'Test262Error: `\p{Ideographic}` should match U+0187F2 (`𘟲`)'
    1304   strict mode: 'Test262Error: `\p{Ideographic}` should match U+0187F2 (`𘟲`)'
     1301  default: 'Test262Error: `\p{Ideographic}` should match U+0187F2 (`𘟲`)'
     1302  strict mode: 'Test262Error: `\p{Ideographic}` should match U+0187F2 (`𘟲`)'
    13051303test/built-ins/RegExp/property-escapes/generated/Lowercase.js:
    1306   default: 'Test262Error: `\p{Lowercase}` should match U+00A7BB (`ꞻ`)'
    1307   strict mode: 'Test262Error: `\p{Lowercase}` should match U+00A7BB (`ꞻ`)'
     1304  default: 'Test262Error: `\p{Lowercase}` should match U+00A7BB (``)'
     1305  strict mode: 'Test262Error: `\p{Lowercase}` should match U+00A7BB (``)'
    13081306test/built-ins/RegExp/property-escapes/generated/Script_-_Adlam.js:
    1309   default: 'Test262Error: `\p{Script=Adlam}` should match U+01E94B (`𞥋`)'
    1310   strict mode: 'Test262Error: `\p{Script=Adlam}` should match U+01E94B (`𞥋`)'
     1307  default: 'Test262Error: `\p{Script=Adlam}` should match U+01E94B (`𞥋`)'
     1308  strict mode: 'Test262Error: `\p{Script=Adlam}` should match U+01E94B (`𞥋`)'
    13111309test/built-ins/RegExp/property-escapes/generated/Script_-_Common.js:
    1312   default: 'Test262Error: `\p{Script=Common}` should match U+001CFA (`ᳺ`)'
    1313   strict mode: 'Test262Error: `\p{Script=Common}` should match U+001CFA (`ᳺ`)'
     1310  default: 'Test262Error: `\p{Script=Common}` should match U+001CFA (``)'
     1311  strict mode: 'Test262Error: `\p{Script=Common}` should match U+001CFA (``)'
    13141312test/built-ins/RegExp/property-escapes/generated/Script_-_Devanagari.js:
    1315   default: 'Test262Error: `\P{Script=Devanagari}` should match U+000953 (`॓`)'
    1316   strict mode: 'Test262Error: `\P{Script=Devanagari}` should match U+000953 (`॓`)'
     1313  default: 'Test262Error: `\P{Script=Devanagari}` should match U+000953 (``)'
     1314  strict mode: 'Test262Error: `\P{Script=Devanagari}` should match U+000953 (``)'
    13171315test/built-ins/RegExp/property-escapes/generated/Script_-_Egyptian_Hieroglyphs.js:
    1318   default: 'Test262Error: `\p{Script=Egyptian_Hieroglyphs}` should match U+013430 (`𓐰`)'
    1319   strict mode: 'Test262Error: `\p{Script=Egyptian_Hieroglyphs}` should match U+013430 (`𓐰`)'
     1316  default: 'Test262Error: `\p{Script=Egyptian_Hieroglyphs}` should match U+013430 (`𓐰`)'
     1317  strict mode: 'Test262Error: `\p{Script=Egyptian_Hieroglyphs}` should match U+013430 (`𓐰`)'
    13201318test/built-ins/RegExp/property-escapes/generated/Script_-_Elymaic.js:
    13211319  default: 'SyntaxError: Invalid regular expression: invalid property expression'
    13221320  strict mode: 'SyntaxError: Invalid regular expression: invalid property expression'
    13231321test/built-ins/RegExp/property-escapes/generated/Script_-_Hiragana.js:
    1324   default: 'Test262Error: `\p{Script=Hiragana}` should match U+01B150 (`ð›
    1325 `)'
    1326   strict mode: 'Test262Error: `\p{Script=Hiragana}` should match U+01B150 (`ð›
    1327 `)'
     1322  default: 'Test262Error: `\p{Script=Hiragana}` should match U+01B150 (`𛅐`)'
     1323  strict mode: 'Test262Error: `\p{Script=Hiragana}` should match U+01B150 (`𛅐`)'
    13281324test/built-ins/RegExp/property-escapes/generated/Script_-_Inherited.js:
    1329   default: 'Test262Error: `\p{Script=Inherited}` should match U+000953 (`॓`)'
    1330   strict mode: 'Test262Error: `\p{Script=Inherited}` should match U+000953 (`॓`)'
     1325  default: 'Test262Error: `\p{Script=Inherited}` should match U+000953 (``)'
     1326  strict mode: 'Test262Error: `\p{Script=Inherited}` should match U+000953 (``)'
    13311327test/built-ins/RegExp/property-escapes/generated/Script_-_Katakana.js:
    1332   default: 'Test262Error: `\p{Script=Katakana}` should match U+01B164 (`ð›
    1333 ¤`)'
    1334   strict mode: 'Test262Error: `\p{Script=Katakana}` should match U+01B164 (`ð›
    1335 ¤`)'
     1328  default: 'Test262Error: `\p{Script=Katakana}` should match U+01B164 (`𛅤`)'
     1329  strict mode: 'Test262Error: `\p{Script=Katakana}` should match U+01B164 (`𛅤`)'
    13361330test/built-ins/RegExp/property-escapes/generated/Script_-_Lao.js:
    1337   default: 'Test262Error: `\p{Script=Lao}` should match U+000E86 (`ຆ`)'
    1338   strict mode: 'Test262Error: `\p{Script=Lao}` should match U+000E86 (`ຆ`)'
     1331  default: 'Test262Error: `\p{Script=Lao}` should match U+000E86 (``)'
     1332  strict mode: 'Test262Error: `\p{Script=Lao}` should match U+000E86 (``)'
    13391333test/built-ins/RegExp/property-escapes/generated/Script_-_Latin.js:
    1340   default: 'Test262Error: `\p{Script=Latin}` should match U+00A7BA (`Ꞻ`)'
    1341   strict mode: 'Test262Error: `\p{Script=Latin}` should match U+00A7BA (`Ꞻ`)'
     1334  default: 'Test262Error: `\p{Script=Latin}` should match U+00A7BA (``)'
     1335  strict mode: 'Test262Error: `\p{Script=Latin}` should match U+00A7BA (``)'
    13421336test/built-ins/RegExp/property-escapes/generated/Script_-_Miao.js:
    1343   default: 'Test262Error: `\p{Script=Miao}` should match U+016F45 (`ð–½
    1344 `)'
    1345   strict mode: 'Test262Error: `\p{Script=Miao}` should match U+016F45 (`ð–½
    1346 `)'
     1337  default: 'Test262Error: `\p{Script=Miao}` should match U+016F45 (`𖽅`)'
     1338  strict mode: 'Test262Error: `\p{Script=Miao}` should match U+016F45 (`𖽅`)'
    13471339test/built-ins/RegExp/property-escapes/generated/Script_-_Nandinagari.js:
    13481340  default: 'SyntaxError: Invalid regular expression: invalid property expression'
    13491341  strict mode: 'SyntaxError: Invalid regular expression: invalid property expression'
    13501342test/built-ins/RegExp/property-escapes/generated/Script_-_Newa.js:
    1351   default: 'Test262Error: `\p{Script=Newa}` should match U+01145F (`𑑟`)'
    1352   strict mode: 'Test262Error: `\p{Script=Newa}` should match U+01145F (`𑑟`)'
     1343  default: 'Test262Error: `\p{Script=Newa}` should match U+01145F (`𑑟`)'
     1344  strict mode: 'Test262Error: `\p{Script=Newa}` should match U+01145F (`𑑟`)'
    13531345test/built-ins/RegExp/property-escapes/generated/Script_-_Nyiakeng_Puachue_Hmong.js:
    13541346  default: 'SyntaxError: Invalid regular expression: invalid property expression'
    13551347  strict mode: 'SyntaxError: Invalid regular expression: invalid property expression'
    13561348test/built-ins/RegExp/property-escapes/generated/Script_-_Soyombo.js:
    1357   default: 'Test262Error: `\p{Script=Soyombo}` should match U+011A84 (`𑪄`)'
    1358   strict mode: 'Test262Error: `\p{Script=Soyombo}` should match U+011A84 (`𑪄`)'
     1349  default: 'Test262Error: `\p{Script=Soyombo}` should match U+011A84 (`𑪄`)'
     1350  strict mode: 'Test262Error: `\p{Script=Soyombo}` should match U+011A84 (`𑪄`)'
    13591351test/built-ins/RegExp/property-escapes/generated/Script_-_Takri.js:
    1360   default: 'Test262Error: `\p{Script=Takri}` should match U+0116B8 (`𑚸`)'
    1361   strict mode: 'Test262Error: `\p{Script=Takri}` should match U+0116B8 (`𑚸`)'
     1352  default: 'Test262Error: `\p{Script=Takri}` should match U+0116B8 (`𑚸`)'
     1353  strict mode: 'Test262Error: `\p{Script=Takri}` should match U+0116B8 (`𑚸`)'
    13621354test/built-ins/RegExp/property-escapes/generated/Script_-_Tamil.js:
    1363   default: 'Test262Error: `\p{Script=Tamil}` should match U+011FFF (`𑿿`)'
    1364   strict mode: 'Test262Error: `\p{Script=Tamil}` should match U+011FFF (`𑿿`)'
     1355  default: 'Test262Error: `\p{Script=Tamil}` should match U+011FFF (`𑿿`)'
     1356  strict mode: 'Test262Error: `\p{Script=Tamil}` should match U+011FFF (`𑿿`)'
    13651357test/built-ins/RegExp/property-escapes/generated/Script_-_Tangut.js:
    1366   default: 'Test262Error: `\p{Script=Tangut}` should match U+0187F2 (`𘟲`)'
    1367   strict mode: 'Test262Error: `\p{Script=Tangut}` should match U+0187F2 (`𘟲`)'
     1358  default: 'Test262Error: `\p{Script=Tangut}` should match U+0187F2 (`𘟲`)'
     1359  strict mode: 'Test262Error: `\p{Script=Tangut}` should match U+0187F2 (`𘟲`)'
    13681360test/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js:
    1369   default: 'Test262Error: `\p{Script=Telugu}` should match U+000C77 (`à±·`)'
    1370   strict mode: 'Test262Error: `\p{Script=Telugu}` should match U+000C77 (`à±·`)'
     1361  default: 'Test262Error: `\p{Script=Telugu}` should match U+000C77 (``)'
     1362  strict mode: 'Test262Error: `\p{Script=Telugu}` should match U+000C77 (``)'
    13711363test/built-ins/RegExp/property-escapes/generated/Script_-_Wancho.js:
    13721364  default: 'SyntaxError: Invalid regular expression: invalid property expression'
    13731365  strict mode: 'SyntaxError: Invalid regular expression: invalid property expression'
    13741366test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Adlam.js:
    1375   default: 'Test262Error: `\p{Script_Extensions=Adlam}` should match U+01E94B (`𞥋`)'
    1376   strict mode: 'Test262Error: `\p{Script_Extensions=Adlam}` should match U+01E94B (`𞥋`)'
     1367  default: 'Test262Error: `\p{Script_Extensions=Adlam}` should match U+01E94B (`𞥋`)'
     1368  strict mode: 'Test262Error: `\p{Script_Extensions=Adlam}` should match U+01E94B (`𞥋`)'
    13771369test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bengali.js:
    1378   default: 'Test262Error: `\p{Script_Extensions=Bengali}` should match U+001CF2 (`á³²`)'
    1379   strict mode: 'Test262Error: `\p{Script_Extensions=Bengali}` should match U+001CF2 (`á³²`)'
     1370  default: 'Test262Error: `\p{Script_Extensions=Bengali}` should match U+001CF2 (``)'
     1371  strict mode: 'Test262Error: `\p{Script_Extensions=Bengali}` should match U+001CF2 (``)'
    13801372test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Common.js:
    1381   default: 'Test262Error: `\p{Script_Extensions=Common}` should match U+002BC9 (`⯉`)'
    1382   strict mode: 'Test262Error: `\p{Script_Extensions=Common}` should match U+002BC9 (`⯉`)'
     1373  default: 'Test262Error: `\p{Script_Extensions=Common}` should match U+002BC9 (``)'
     1374  strict mode: 'Test262Error: `\p{Script_Extensions=Common}` should match U+002BC9 (``)'
    13831375test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Devanagari.js:
    1384   default: 'Test262Error: `\P{Script_Extensions=Devanagari}` should match U+000953 (`॓`)'
    1385   strict mode: 'Test262Error: `\P{Script_Extensions=Devanagari}` should match U+000953 (`॓`)'
     1376  default: 'Test262Error: `\P{Script_Extensions=Devanagari}` should match U+000953 (``)'
     1377  strict mode: 'Test262Error: `\P{Script_Extensions=Devanagari}` should match U+000953 (``)'
    13861378test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Egyptian_Hieroglyphs.js:
    1387   default: 'Test262Error: `\p{Script_Extensions=Egyptian_Hieroglyphs}` should match U+013430 (`𓐰`)'
    1388   strict mode: 'Test262Error: `\p{Script_Extensions=Egyptian_Hieroglyphs}` should match U+013430 (`𓐰`)'
     1379  default: 'Test262Error: `\p{Script_Extensions=Egyptian_Hieroglyphs}` should match U+013430 (`𓐰`)'
     1380  strict mode: 'Test262Error: `\p{Script_Extensions=Egyptian_Hieroglyphs}` should match U+013430 (`𓐰`)'
    13891381test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elymaic.js:
    13901382  default: 'SyntaxError: Invalid regular expression: invalid property expression'
    13911383  strict mode: 'SyntaxError: Invalid regular expression: invalid property expression'
    13921384test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Grantha.js:
    1393   default: 'Test262Error: `\p{Script_Extensions=Grantha}` should match U+011FD3 (`𑿓`)'
    1394   strict mode: 'Test262Error: `\p{Script_Extensions=Grantha}` should match U+011FD3 (`𑿓`)'
     1385  default: 'Test262Error: `\p{Script_Extensions=Grantha}` should match U+011FD3 (`𑿓`)'
     1386  strict mode: 'Test262Error: `\p{Script_Extensions=Grantha}` should match U+011FD3 (`𑿓`)'
    13951387test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Han.js:
    1396   default: 'Test262Error: `\p{Script_Extensions=Han}` should match U+0032FF (`㋿`)'
    1397   strict mode: 'Test262Error: `\p{Script_Extensions=Han}` should match U+0032FF (`㋿`)'
     1388  default: 'Test262Error: `\p{Script_Extensions=Han}` should match U+0032FF (``)'
     1389  strict mode: 'Test262Error: `\p{Script_Extensions=Han}` should match U+0032FF (``)'
    13981390test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hiragana.js:
    1399   default: 'Test262Error: `\p{Script_Extensions=Hiragana}` should match U+01B150 (`ð›
    1400 `)'
    1401   strict mode: 'Test262Error: `\p{Script_Extensions=Hiragana}` should match U+01B150 (`ð›
    1402 `)'
     1391  default: 'Test262Error: `\p{Script_Extensions=Hiragana}` should match U+01B150 (`𛅐`)'
     1392  strict mode: 'Test262Error: `\p{Script_Extensions=Hiragana}` should match U+01B150 (`𛅐`)'
    14031393test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inherited.js:
    1404   default: 'Test262Error: `\p{Script_Extensions=Inherited}` should match U+000953 (`॓`)'
    1405   strict mode: 'Test262Error: `\p{Script_Extensions=Inherited}` should match U+000953 (`॓`)'
     1394  default: 'Test262Error: `\p{Script_Extensions=Inherited}` should match U+000953 (``)'
     1395  strict mode: 'Test262Error: `\p{Script_Extensions=Inherited}` should match U+000953 (``)'
    14061396test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kannada.js:
    1407   default: 'Test262Error: `\p{Script_Extensions=Kannada}` should match U+001CF2 (`á³²`)'
    1408   strict mode: 'Test262Error: `\p{Script_Extensions=Kannada}` should match U+001CF2 (`á³²`)'
     1397  default: 'Test262Error: `\p{Script_Extensions=Kannada}` should match U+001CF2 (``)'
     1398  strict mode: 'Test262Error: `\p{Script_Extensions=Kannada}` should match U+001CF2 (``)'
    14091399test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Katakana.js:
    1410   default: 'Test262Error: `\p{Script_Extensions=Katakana}` should match U+01B164 (`ð›
    1411 ¤`)'
    1412   strict mode: 'Test262Error: `\p{Script_Extensions=Katakana}` should match U+01B164 (`ð›
    1413 ¤`)'
     1400  default: 'Test262Error: `\p{Script_Extensions=Katakana}` should match U+01B164 (`𛅤`)'
     1401  strict mode: 'Test262Error: `\p{Script_Extensions=Katakana}` should match U+01B164 (`𛅤`)'
    14141402test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lao.js:
    1415   default: 'Test262Error: `\p{Script_Extensions=Lao}` should match U+000E86 (`ຆ`)'
    1416   strict mode: 'Test262Error: `\p{Script_Extensions=Lao}` should match U+000E86 (`ຆ`)'
     1403  default: 'Test262Error: `\p{Script_Extensions=Lao}` should match U+000E86 (``)'
     1404  strict mode: 'Test262Error: `\p{Script_Extensions=Lao}` should match U+000E86 (``)'
    14171405test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Latin.js:
    1418   default: 'Test262Error: `\p{Script_Extensions=Latin}` should match U+00202F (` `)'
    1419   strict mode: 'Test262Error: `\p{Script_Extensions=Latin}` should match U+00202F (` `)'
     1406  default: 'Test262Error: `\p{Script_Extensions=Latin}` should match U+00202F (``)'
     1407  strict mode: 'Test262Error: `\p{Script_Extensions=Latin}` should match U+00202F (``)'
    14201408test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Masaram_Gondi.js:
    1421   default: 'Test262Error: `\p{Script_Extensions=Masaram_Gondi}` should match U+000964 (`।`)'
    1422   strict mode: 'Test262Error: `\p{Script_Extensions=Masaram_Gondi}` should match U+000964 (`।`)'
     1409  default: 'Test262Error: `\p{Script_Extensions=Masaram_Gondi}` should match U+000964 (``)'
     1410  strict mode: 'Test262Error: `\p{Script_Extensions=Masaram_Gondi}` should match U+000964 (``)'
    14231411test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Miao.js:
    1424   default: 'Test262Error: `\p{Script_Extensions=Miao}` should match U+016F45 (`ð–½
    1425 `)'
    1426   strict mode: 'Test262Error: `\p{Script_Extensions=Miao}` should match U+016F45 (`ð–½
    1427 `)'
     1412  default: 'Test262Error: `\p{Script_Extensions=Miao}` should match U+016F45 (`𖽅`)'
     1413  strict mode: 'Test262Error: `\p{Script_Extensions=Miao}` should match U+016F45 (`𖽅`)'
    14281414test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mongolian.js:
    1429   default: 'Test262Error: `\p{Script_Extensions=Mongolian}` should match U+00202F (` `)'
    1430   strict mode: 'Test262Error: `\p{Script_Extensions=Mongolian}` should match U+00202F (` `)'
     1415  default: 'Test262Error: `\p{Script_Extensions=Mongolian}` should match U+00202F (``)'
     1416  strict mode: 'Test262Error: `\p{Script_Extensions=Mongolian}` should match U+00202F (``)'
    14311417test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nandinagari.js:
    14321418  default: 'SyntaxError: Invalid regular expression: invalid property expression'
    14331419  strict mode: 'SyntaxError: Invalid regular expression: invalid property expression'
    14341420test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Newa.js:
    1435   default: 'Test262Error: `\p{Script_Extensions=Newa}` should match U+01145F (`𑑟`)'
    1436   strict mode: 'Test262Error: `\p{Script_Extensions=Newa}` should match U+01145F (`𑑟`)'
     1421  default: 'Test262Error: `\p{Script_Extensions=Newa}` should match U+01145F (`𑑟`)'
     1422  strict mode: 'Test262Error: `\p{Script_Extensions=Newa}` should match U+01145F (`𑑟`)'
    14371423test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nyiakeng_Puachue_Hmong.js:
    14381424  default: 'SyntaxError: Invalid regular expression: invalid property expression'
    14391425  strict mode: 'SyntaxError: Invalid regular expression: invalid property expression'
    14401426test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Oriya.js:
    1441   default: 'Test262Error: `\p{Script_Extensions=Oriya}` should match U+001CF2 (`á³²`)'
    1442   strict mode: 'Test262Error: `\p{Script_Extensions=Oriya}` should match U+001CF2 (`á³²`)'
     1427  default: 'Test262Error: `\p{Script_Extensions=Oriya}` should match U+001CF2 (``)'
     1428  strict mode: 'Test262Error: `\p{Script_Extensions=Oriya}` should match U+001CF2 (``)'
    14431429test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Soyombo.js:
    1444   default: 'Test262Error: `\p{Script_Extensions=Soyombo}` should match U+011A84 (`𑪄`)'
    1445   strict mode: 'Test262Error: `\p{Script_Extensions=Soyombo}` should match U+011A84 (`𑪄`)'
     1430  default: 'Test262Error: `\p{Script_Extensions=Soyombo}` should match U+011A84 (`𑪄`)'
     1431  strict mode: 'Test262Error: `\p{Script_Extensions=Soyombo}` should match U+011A84 (`𑪄`)'
    14461432test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Takri.js:
    1447   default: 'Test262Error: `\p{Script_Extensions=Takri}` should match U+0116B8 (`𑚸`)'
    1448   strict mode: 'Test262Error: `\p{Script_Extensions=Takri}` should match U+0116B8 (`𑚸`)'
     1433  default: 'Test262Error: `\p{Script_Extensions=Takri}` should match U+0116B8 (`𑚸`)'
     1434  strict mode: 'Test262Error: `\p{Script_Extensions=Takri}` should match U+0116B8 (`𑚸`)'
    14491435test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tamil.js:
    1450   default: 'Test262Error: `\p{Script_Extensions=Tamil}` should match U+011FFF (`𑿿`)'
    1451   strict mode: 'Test262Error: `\p{Script_Extensions=Tamil}` should match U+011FFF (`𑿿`)'
     1436  default: 'Test262Error: `\p{Script_Extensions=Tamil}` should match U+011FFF (`𑿿`)'
     1437  strict mode: 'Test262Error: `\p{Script_Extensions=Tamil}` should match U+011FFF (`𑿿`)'
    14521438test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tangut.js:
    1453   default: 'Test262Error: `\p{Script_Extensions=Tangut}` should match U+0187F2 (`𘟲`)'
    1454   strict mode: 'Test262Error: `\p{Script_Extensions=Tangut}` should match U+0187F2 (`𘟲`)'
     1439  default: 'Test262Error: `\p{Script_Extensions=Tangut}` should match U+0187F2 (`𘟲`)'
     1440  strict mode: 'Test262Error: `\p{Script_Extensions=Tangut}` should match U+0187F2 (`𘟲`)'
    14551441test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Telugu.js:
    1456   default: 'Test262Error: `\p{Script_Extensions=Telugu}` should match U+001CF2 (`á³²`)'
    1457   strict mode: 'Test262Error: `\p{Script_Extensions=Telugu}` should match U+001CF2 (`á³²`)'
     1442  default: 'Test262Error: `\p{Script_Extensions=Telugu}` should match U+001CF2 (``)'
     1443  strict mode: 'Test262Error: `\p{Script_Extensions=Telugu}` should match U+001CF2 (``)'
    14581444test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tirhuta.js:
    1459   default: 'Test262Error: `\p{Script_Extensions=Tirhuta}` should match U+001CF2 (`á³²`)'
    1460   strict mode: 'Test262Error: `\p{Script_Extensions=Tirhuta}` should match U+001CF2 (`á³²`)'
     1445  default: 'Test262Error: `\p{Script_Extensions=Tirhuta}` should match U+001CF2 (``)'
     1446  strict mode: 'Test262Error: `\p{Script_Extensions=Tirhuta}` should match U+001CF2 (``)'
    14611447test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Wancho.js:
    14621448  default: 'SyntaxError: Invalid regular expression: invalid property expression'
    14631449  strict mode: 'SyntaxError: Invalid regular expression: invalid property expression'
    14641450test/built-ins/RegExp/property-escapes/generated/Terminal_Punctuation.js:
    1465   default: 'Test262Error: `\p{Terminal_Punctuation}` should match U+002E4F (`⹏`)'
    1466   strict mode: 'Test262Error: `\p{Terminal_Punctuation}` should match U+002E4F (`⹏`)'
     1451  default: 'Test262Error: `\p{Terminal_Punctuation}` should match U+002E4F (``)'
     1452  strict mode: 'Test262Error: `\p{Terminal_Punctuation}` should match U+002E4F (``)'
    14671453test/built-ins/RegExp/property-escapes/generated/Uppercase.js:
    1468   default: 'Test262Error: `\p{Uppercase}` should match U+00A7BA (`Ꞻ`)'
    1469   strict mode: 'Test262Error: `\p{Uppercase}` should match U+00A7BA (`Ꞻ`)'
     1454  default: 'Test262Error: `\p{Uppercase}` should match U+00A7BA (``)'
     1455  strict mode: 'Test262Error: `\p{Uppercase}` should match U+00A7BA (``)'
    14701456test/built-ins/RegExp/property-escapes/generated/XID_Continue.js:
    1471   default: 'Test262Error: `\p{XID_Continue}` should match U+016FE3 (`𖿣`)'
    1472   strict mode: 'Test262Error: `\p{XID_Continue}` should match U+016FE3 (`𖿣`)'
     1457  default: 'Test262Error: `\p{XID_Continue}` should match U+016FE3 (`𖿣`)'
     1458  strict mode: 'Test262Error: `\p{XID_Continue}` should match U+016FE3 (`𖿣`)'
    14731459test/built-ins/RegExp/property-escapes/generated/XID_Start.js:
    1474   default: 'Test262Error: `\p{XID_Start}` should match U+001CFA (`ᳺ`)'
    1475   strict mode: 'Test262Error: `\p{XID_Start}` should match U+001CFA (`ᳺ`)'
     1460  default: 'Test262Error: `\p{XID_Start}` should match U+001CFA (``)'
     1461  strict mode: 'Test262Error: `\p{XID_Start}` should match U+001CFA (``)'
    14761462test/built-ins/RegExp/property-escapes/non-existent-property-value-General_Category-negated.js:
    14771463  default: 'Test262: This statement should not be evaluated.'
     
    14931479  strict mode: 'Test262: This statement should not be evaluated.'
    14941480test/built-ins/RegExp/proto-from-ctor-realm.js:
    1495   default: 'Test262Error: Expected SameValue(«/(?:)/», «/(?:)/») to be true'
    1496   strict mode: 'Test262Error: Expected SameValue(«/(?:)/», «/(?:)/») to be true'
     1481  default: 'Test262Error: Expected SameValue(«/(?:)/», «/(?:)/») to be true'
     1482  strict mode: 'Test262Error: Expected SameValue(«/(?:)/», «/(?:)/») to be true'
    14971483test/built-ins/RegExp/prototype/Symbol.match/builtin-infer-unicode.js:
    1498   default: 'Test262Error: Expected SameValue(«�», «null») to be true'
    1499   strict mode: 'Test262Error: Expected SameValue(«�», «null») to be true'
     1484  default: 'Test262Error: Expected SameValue(«�», «null») to be true'
     1485  strict mode: 'Test262Error: Expected SameValue(«�», «null») to be true'
    15001486test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-capture.js:
    1501   default: 'Test262Error: Expected SameValue(«», «foo[toString value]bar») to be true'
    1502   strict mode: 'Test262Error: Expected SameValue(«», «foo[toString value]bar») to be true'
     1487  default: 'Test262Error: Expected SameValue(«», «foo[toString value]bar») to be true'
     1488  strict mode: 'Test262Error: Expected SameValue(«», «foo[toString value]bar») to be true'
    15031489test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-length.js:
    1504   default: 'Test262Error: Expected SameValue(«», «foobar$3») to be true'
    1505   strict mode: 'Test262Error: Expected SameValue(«», «foobar$3») to be true'
     1490  default: 'Test262Error: Expected SameValue(«», «foobar$3») to be true'
     1491  strict mode: 'Test262Error: Expected SameValue(«», «foobar$3») to be true'
    15061492test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-matched.js:
    1507   default: 'Test262Error: Expected SameValue(«», «foo[toString value]bar») to be true'
    1508   strict mode: 'Test262Error: Expected SameValue(«», «foo[toString value]bar») to be true'
     1493  default: 'Test262Error: Expected SameValue(«», «foo[toString value]bar») to be true'
     1494  strict mode: 'Test262Error: Expected SameValue(«», «foo[toString value]bar») to be true'
    15091495test/built-ins/RegExp/prototype/Symbol.search/u-lastindex-advance.js:
    1510   default: 'Test262Error: Expected SameValue(«1», «-1») to be true'
    1511   strict mode: 'Test262Error: Expected SameValue(«1», «-1») to be true'
     1496  default: 'Test262Error: Expected SameValue(«1», «-1») to be true'
     1497  strict mode: 'Test262Error: Expected SameValue(«1», «-1») to be true'
    15121498test/built-ins/RegExp/prototype/Symbol.split/u-lastindex-adv-thru-failure.js:
    1513   default: 'Test262Error: Expected SameValue(«2», «1») to be true'
    1514   strict mode: 'Test262Error: Expected SameValue(«2», «1») to be true'
     1499  default: 'Test262Error: Expected SameValue(«2», «1») to be true'
     1500  strict mode: 'Test262Error: Expected SameValue(«2», «1») to be true'
    15151501test/built-ins/RegExp/prototype/dotAll/cross-realm.js:
    15161502  default: 'Test262Error: cross-realm RegExp.prototype Expected a TypeError to be thrown but no exception was thrown at all'
     
    15201506  strict mode: "TypeError: null is not an object (evaluating '__executed[0]')"
    15211507test/built-ins/RegExp/prototype/exec/failure-lastindex-access.js:
    1522   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    1523   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1508  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1509  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    15241510test/built-ins/RegExp/prototype/exec/success-lastindex-access.js:
    1525   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    1526   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1511  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     1512  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    15271513test/built-ins/RegExp/prototype/exec/u-lastindex-adv.js:
    1528   default: 'Test262Error: Expected SameValue(«�», «null») to be true'
    1529   strict mode: 'Test262Error: Expected SameValue(«�», «null») to be true'
     1514  default: 'Test262Error: Expected SameValue(«�», «null») to be true'
     1515  strict mode: 'Test262Error: Expected SameValue(«�», «null») to be true'
    15301516test/built-ins/RegExp/prototype/global/cross-realm.js:
    15311517  default: 'Test262Error: cross-realm RegExp.prototype Expected a TypeError to be thrown but no exception was thrown at all'
     
    15741560  strict mode: 'Test262Error: RegExp("(?=.)*", "u"):  Expected a SyntaxError to be thrown but no exception was thrown at all'
    15751561test/built-ins/Set/proto-from-ctor-realm.js:
    1576   default: 'Test262Error: Expected SameValue(«[object Set]», «[object Set]») to be true'
    1577   strict mode: 'Test262Error: Expected SameValue(«[object Set]», «[object Set]») to be true'
     1562  default: 'Test262Error: Expected SameValue(«[object Set]», «[object Set]») to be true'
     1563  strict mode: 'Test262Error: Expected SameValue(«[object Set]», «[object Set]») to be true'
    15781564test/built-ins/String/proto-from-ctor-realm.js:
    1579   default: 'Test262Error: Expected SameValue(«», «») to be true'
    1580   strict mode: 'Test262Error: Expected SameValue(«», «») to be true'
     1565  default: 'Test262Error: Expected SameValue(«», «») to be true'
     1566  strict mode: 'Test262Error: Expected SameValue(«», «») to be true'
    15811567test/built-ins/ThrowTypeError/extensible.js:
    1582   default: 'Test262Error: Expected SameValue(«true», «false») to be true'
    1583   strict mode: 'Test262Error: Expected SameValue(«true», «false») to be true'
     1568  default: 'Test262Error: Expected SameValue(«true», «false») to be true'
     1569  strict mode: 'Test262Error: Expected SameValue(«true», «false») to be true'
    15841570test/built-ins/ThrowTypeError/frozen.js:
    1585   default: 'Test262Error: Expected SameValue(«false», «true») to be true'
    1586   strict mode: 'Test262Error: Expected SameValue(«false», «true») to be true'
     1571  default: 'Test262Error: Expected SameValue(«false», «true») to be true'
     1572  strict mode: 'Test262Error: Expected SameValue(«false», «true») to be true'
    15871573test/built-ins/ThrowTypeError/length.js:
    15881574  default: 'Test262Error: Expected obj[length] to have configurable:false.'
     
    15921578  strict mode: 'Test262Error: obj should have an own property name'
    15931579test/built-ins/ThrowTypeError/unique-per-realm-non-simple.js:
    1594   default: 'Test262Error: callee.get Expected SameValue(«function () {'
     1580  default: 'Test262Error: callee.get Expected SameValue(«function () {'
    15951581test/built-ins/TypedArray/prototype/fill/fill-values-conversion-once.js:
    1596   default: 'Test262Error: additional unexpected ToNumber() calls Expected SameValue(«3», «2») to be true (Testing with Float64Array.)'
    1597   strict mode: 'Test262Error: additional unexpected ToNumber() calls Expected SameValue(«3», «2») to be true (Testing with Float64Array.)'
     1582  default: 'Test262Error: additional unexpected ToNumber() calls Expected SameValue(«3», «2») to be true (Testing with Float64Array.)'
     1583  strict mode: 'Test262Error: additional unexpected ToNumber() calls Expected SameValue(«3», «2») to be true (Testing with Float64Array.)'
    15981584test/built-ins/TypedArray/prototype/filter/speciesctor-get-ctor-returns-throws.js:
    15991585  default: 'Test262Error: 42 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
     
    16301616  strict mode: 'Test262Error: should not call valueOf if toString is present (Testing with Float64Array.)'
    16311617test/built-ins/TypedArray/prototype/toLocaleString/calls-valueof-from-each-value.js:
    1632   default: 'Test262Error: returns expected value Expected SameValue(«hacks2,hacks1», «hacks1,hacks2») to be true (Testing with Float64Array.)'
    1633   strict mode: 'Test262Error: returns expected value Expected SameValue(«hacks2,hacks1», «hacks1,hacks2») to be true (Testing with Float64Array.)'
     1618  default: 'Test262Error: returns expected value Expected SameValue(«hacks2,hacks1», «hacks1,hacks2») to be true (Testing with Float64Array.)'
     1619  strict mode: 'Test262Error: returns expected value Expected SameValue(«hacks2,hacks1», «hacks1,hacks2») to be true (Testing with Float64Array.)'
    16341620test/built-ins/TypedArrayConstructors/ctors/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js:
    16351621  default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
     
    16451631  strict mode: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)'
    16461632test/built-ins/TypedArrayConstructors/ctors/buffer-arg/proto-from-ctor-realm.js:
    1647   default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    1648   strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1633  default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1634  strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    16491635test/built-ins/TypedArrayConstructors/ctors/length-arg/proto-from-ctor-realm.js:
    1650   default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    1651   strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1636  default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1637  strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    16521638test/built-ins/TypedArrayConstructors/ctors/no-args/proto-from-ctor-realm.js:
    1653   default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    1654   strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1639  default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1640  strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    16551641test/built-ins/TypedArrayConstructors/ctors/object-arg/length-excessive-throws.js:
    16561642  default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    16571643  strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    16581644test/built-ins/TypedArrayConstructors/ctors/object-arg/proto-from-ctor-realm.js:
    1659   default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    1660   strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1645  default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1646  strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    16611647test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-different-type.js:
    16621648  default: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
     
    16691655  strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    16701656test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-custom-species-proto-from-ctor-realm.js:
    1671   default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true (Testing with Float64Array.)'
    1672   strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true (Testing with Float64Array.)'
     1657  default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true (Testing with Float64Array.)'
     1658  strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true (Testing with Float64Array.)'
    16731659test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-custom-species.js:
    1674   default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object Object]») to be true (Testing with Float64Array.)'
    1675   strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object Object]») to be true (Testing with Float64Array.)'
     1660  default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object Object]») to be true (Testing with Float64Array.)'
     1661  strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object Object]») to be true (Testing with Float64Array.)'
    16761662test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-not-object-throws.js:
    16771663  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
     
    16871673  strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    16881674test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/proto-from-ctor-realm.js:
    1689   default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    1690   strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1675  default: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
     1676  strict mode: 'Test262Error: Expected SameValue(«[object Float64ArrayPrototype]», «[object Float64ArrayPrototype]») to be true (Testing with Float64Array.)'
    16911677test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-access-throws.js:
    16921678  default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    16931679  strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    16941680test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-custom-proto-from-ctor-realm.js:
    1695   default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true (Testing with Float64Array.)'
    1696   strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true (Testing with Float64Array.)'
     1681  default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true (Testing with Float64Array.)'
     1682  strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object ArrayBuffer]») to be true (Testing with Float64Array.)'
    16971683test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-custom.js:
    1698   default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object Object]») to be true (Testing with Float64Array.)'
    1699   strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object Object]») to be true (Testing with Float64Array.)'
     1684  default: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object Object]») to be true (Testing with Float64Array.)'
     1685  strict mode: 'Test262Error: Expected SameValue(«[object ArrayBuffer]», «[object Object]») to be true (Testing with Float64Array.)'
    17001686test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-not-ctor.js:
    17011687  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
     
    17201706  strict mode: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)'
    17211707test/built-ins/TypedArrayConstructors/from/set-value-abrupt-completion.js:
    1722   default: 'Test262Error: interrupted source iteration Expected SameValue(«1», «[object Object]») to be true (Testing with Float64Array.)'
    1723   strict mode: 'Test262Error: interrupted source iteration Expected SameValue(«1», «[object Object]») to be true (Testing with Float64Array.)'
     1708  default: 'Test262Error: interrupted source iteration Expected SameValue(«1», «[object Object]») to be true (Testing with Float64Array.)'
     1709  strict mode: 'Test262Error: interrupted source iteration Expected SameValue(«1», «[object Object]») to be true (Testing with Float64Array.)'
    17241710test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/conversion-operation-consistent-nan.js:
    17251711  default: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float32Array.)'
     
    17381724  strict mode: 'Test262Error: Throws TypeError on valid numeric index if instance has a detached buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    17391725test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/set-value.js:
    1740   default: 'Test262Error: set value for sample[0] returns true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)'
    1741   strict mode: 'Test262Error: set value for sample[0] returns true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)'
     1726  default: 'Test262Error: set value for sample[0] returns true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)'
     1727  strict mode: 'Test262Error: set value for sample[0] returns true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)'
    17421728test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/tonumber-value-detached-buffer.js:
    17431729  default: 'Test262Error: detaching a ArrayBuffer during defining an element of a typed array viewing it should throw Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
     
    17651751  strict mode: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)'
    17661752test/built-ins/TypedArrayConstructors/internals/HasProperty/inherited-property.js:
    1767   default: 'Test262Error: 42 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    1768   strict mode: 'Test262Error: 42 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1753  default: 'Test262Error: 42 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1754  strict mode: 'Test262Error: 42 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    17691755test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-greater-than-last-index.js:
    1770   default: 'Test262Error: 1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    1771   strict mode: 'Test262Error: 1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1756  default: 'Test262Error: 1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1757  strict mode: 'Test262Error: 1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    17721758test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-lower-than-zero.js:
    1773   default: 'Test262Error: -1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    1774   strict mode: 'Test262Error: -1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1759  default: 'Test262Error: -1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1760  strict mode: 'Test262Error: -1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    17751761test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-minus-zero.js:
    1776   default: 'Test262Error: -0 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    1777   strict mode: 'Test262Error: -0 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1762  default: 'Test262Error: -0 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1763  strict mode: 'Test262Error: -0 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    17781764test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-not-integer.js:
    1779   default: 'Test262Error: 1.1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    1780   strict mode: 'Test262Error: 1.1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1765  default: 'Test262Error: 1.1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
     1766  strict mode: 'Test262Error: 1.1 Expected SameValue(«true», «false») to be true (Testing with Float64Array.)'
    17811767test/built-ins/TypedArrayConstructors/internals/Set/tonumber-value-throws.js:
    17821768  default: 'Test262Error: ToNumber runs before ToInteger(index) Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)'
     
    17921778  strict mode: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)'
    17931779test/built-ins/WeakMap/proto-from-ctor-realm.js:
    1794   default: 'Test262Error: Expected SameValue(«[object WeakMap]», «[object WeakMap]») to be true'
    1795   strict mode: 'Test262Error: Expected SameValue(«[object WeakMap]», «[object WeakMap]») to be true'
     1780  default: 'Test262Error: Expected SameValue(«[object WeakMap]», «[object WeakMap]») to be true'
     1781  strict mode: 'Test262Error: Expected SameValue(«[object WeakMap]», «[object WeakMap]») to be true'
    17961782test/built-ins/WeakRef/proto-from-ctor-realm.js:
    1797   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object WeakRef]», «[object WeakRef]») to be true'
    1798   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object WeakRef]», «[object WeakRef]») to be true'
     1783  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object WeakRef]», «[object WeakRef]») to be true'
     1784  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object WeakRef]», «[object WeakRef]») to be true'
    17991785test/built-ins/WeakSet/proto-from-ctor-realm.js:
    1800   default: 'Test262Error: Expected SameValue(«[object WeakSet]», «[object WeakSet]») to be true'
    1801   strict mode: 'Test262Error: Expected SameValue(«[object WeakSet]», «[object WeakSet]») to be true'
     1786  default: 'Test262Error: Expected SameValue(«[object WeakSet]», «[object WeakSet]») to be true'
     1787  strict mode: 'Test262Error: Expected SameValue(«[object WeakSet]», «[object WeakSet]») to be true'
    18021788test/intl402/BigInt/prototype/toLocaleString/de-DE.js:
    18031789  default: 'RangeError: toString() radix argument must be between 2 and 36'
     
    18161802  strict mode: "Test262Error: BigInt.prototype.toLocaleString didn't throw exception for locales null. Expected a TypeError but got a RangeError"
    18171803test/intl402/Collator/missing-unicode-ext-value-defaults-to-true.js:
    1818   default: 'Test262Error: "kn" should be returned in locale. Expected SameValue(«false», «true») to be true'
    1819   strict mode: 'Test262Error: "kn" should be returned in locale. Expected SameValue(«false», «true») to be true'
     1804  default: 'Test262Error: "kn" should be returned in locale. Expected SameValue(«false», «true») to be true'
     1805  strict mode: 'Test262Error: "kn" should be returned in locale. Expected SameValue(«false», «true») to be true'
    18201806test/intl402/Collator/proto-from-ctor-realm.js:
    1821   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
    1822   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
     1807  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
     1808  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
    18231809test/intl402/Collator/usage-de.js:
    1824   default: 'Test262Error: Expected [Ä, AE] and [AE, Ä] to have the same contents. search'
    1825   strict mode: 'Test262Error: Expected [Ä, AE] and [AE, Ä] to have the same contents. search'
     1810  default: 'Test262Error: Expected [Ä, AE] and [AE, Ä] to have the same contents. search'
     1811  strict mode: 'Test262Error: Expected [Ä, AE] and [AE, Ä] to have the same contents. search'
    18261812test/intl402/DateTimeFormat/constructor-calendar-numberingSystem-order.js:
    18271813  default: 'Test262Error: Expected [localeMatcher, hour12] and [localeMatcher, calendar, numberingSystem, hour12] to have the same contents. '
     
    18311817  strict mode: 'Test262Error: new Intl.DateTimeFormat("en", { dayPeriod: "" }) throws RangeError Expected a RangeError to be thrown but no exception was thrown at all'
    18321818test/intl402/DateTimeFormat/constructor-options-dayPeriod-valid.js:
    1833   default: 'Test262Error: Expected SameValue(«undefined», «long») to be true'
    1834   strict mode: 'Test262Error: Expected SameValue(«undefined», «long») to be true'
     1819  default: 'Test262Error: Expected SameValue(«undefined», «long») to be true'
     1820  strict mode: 'Test262Error: Expected SameValue(«undefined», «long») to be true'
    18351821test/intl402/DateTimeFormat/constructor-options-fractionalSecondDigits-invalid.js:
    18361822  default: 'Test262Error: new Intl.DateTimeFormat("en", { fractionalSecondDigits: "LONG" }) throws RangeError Expected a RangeError to be thrown but no exception was thrown at all'
    18371823  strict mode: 'Test262Error: new Intl.DateTimeFormat("en", { fractionalSecondDigits: "LONG" }) throws RangeError Expected a RangeError to be thrown but no exception was thrown at all'
    18381824test/intl402/DateTimeFormat/constructor-options-fractionalSecondDigits-valid.js:
    1839   default: 'Test262Error: Expected SameValue(«undefined», «0») to be true'
    1840   strict mode: 'Test262Error: Expected SameValue(«undefined», «0») to be true'
     1825  default: 'Test262Error: Expected SameValue(«undefined», «0») to be true'
     1826  strict mode: 'Test262Error: Expected SameValue(«undefined», «0») to be true'
    18411827test/intl402/DateTimeFormat/constructor-options-order-dayPeriod.js:
    18421828  default: 'Test262Error: Expected [day, hour, day, hour] and [day, dayPeriod, hour, day, dayPeriod, hour] to have the same contents. '
     
    18521838  strict mode: 'Test262Error: Exception from fractionalSecondDigits getter should be propagated Expected a CustomError to be thrown but no exception was thrown at all'
    18531839test/intl402/DateTimeFormat/numbering-system-calendar-options.js:
    1854   default: "Test262Error: Options value for property numberingSystem doesn't override locale extension key nu. Expected SameValue(«arab», «latn») to be true"
    1855   strict mode: "Test262Error: Options value for property numberingSystem doesn't override locale extension key nu. Expected SameValue(«arab», «latn») to be true"
     1840  default: "Test262Error: Options value for property numberingSystem doesn't override locale extension key nu. Expected SameValue(«arab», «latn») to be true"
     1841  strict mode: "Test262Error: Options value for property numberingSystem doesn't override locale extension key nu. Expected SameValue(«arab», «latn») to be true"
    18561842test/intl402/DateTimeFormat/proto-from-ctor-realm.js:
    1857   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
    1858   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
     1843  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
     1844  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
    18591845test/intl402/DateTimeFormat/prototype/format/dayPeriod-long-en.js:
    1860   default: 'Test262Error: 00:00, long format Expected SameValue(«12/12/2017», «at night») to be true'
    1861   strict mode: 'Test262Error: 00:00, long format Expected SameValue(«12/12/2017», «at night») to be true'
     1846  default: 'Test262Error: 00:00, long format Expected SameValue(«12/12/2017», «at night») to be true'
     1847  strict mode: 'Test262Error: 00:00, long format Expected SameValue(«12/12/2017», «at night») to be true'
    18621848test/intl402/DateTimeFormat/prototype/format/dayPeriod-narrow-en.js:
    1863   default: 'Test262Error: 00:00, narrow format Expected SameValue(«12/12/2017», «at night») to be true'
    1864   strict mode: 'Test262Error: 00:00, narrow format Expected SameValue(«12/12/2017», «at night») to be true'
     1849  default: 'Test262Error: 00:00, narrow format Expected SameValue(«12/12/2017», «at night») to be true'
     1850  strict mode: 'Test262Error: 00:00, narrow format Expected SameValue(«12/12/2017», «at night») to be true'
    18651851test/intl402/DateTimeFormat/prototype/format/dayPeriod-short-en.js:
    1866   default: 'Test262Error: 00:00, short format Expected SameValue(«12/12/2017», «at night») to be true'
    1867   strict mode: 'Test262Error: 00:00, short format Expected SameValue(«12/12/2017», «at night») to be true'
     1852  default: 'Test262Error: 00:00, short format Expected SameValue(«12/12/2017», «at night») to be true'
     1853  strict mode: 'Test262Error: 00:00, short format Expected SameValue(«12/12/2017», «at night») to be true'
    18681854test/intl402/DateTimeFormat/prototype/format/fractionalSecondDigits.js:
    1869   default: 'Test262Error: 1 fractionalSecondDigits round down Expected SameValue(«02:03», «02:03.2») to be true'
    1870   strict mode: 'Test262Error: 1 fractionalSecondDigits round down Expected SameValue(«02:03», «02:03.2») to be true'
     1855  default: 'Test262Error: 1 fractionalSecondDigits round down Expected SameValue(«02:03», «02:03.2») to be true'
     1856  strict mode: 'Test262Error: 1 fractionalSecondDigits round down Expected SameValue(«02:03», «02:03.2») to be true'
    18711857test/intl402/DateTimeFormat/prototype/formatToParts/dayPeriod-long-en.js:
    1872   default: 'Test262Error: length should be 1, 00:00, long format Expected SameValue(«5», «1») to be true'
    1873   strict mode: 'Test262Error: length should be 1, 00:00, long format Expected SameValue(«5», «1») to be true'
     1858  default: 'Test262Error: length should be 1, 00:00, long format Expected SameValue(«5», «1») to be true'
     1859  strict mode: 'Test262Error: length should be 1, 00:00, long format Expected SameValue(«5», «1») to be true'
    18741860test/intl402/DateTimeFormat/prototype/formatToParts/dayPeriod-narrow-en.js:
    1875   default: 'Test262Error: length should be 1, 00:00, narrow format Expected SameValue(«5», «1») to be true'
    1876   strict mode: 'Test262Error: length should be 1, 00:00, narrow format Expected SameValue(«5», «1») to be true'
     1861  default: 'Test262Error: length should be 1, 00:00, narrow format Expected SameValue(«5», «1») to be true'
     1862  strict mode: 'Test262Error: length should be 1, 00:00, narrow format Expected SameValue(«5», «1») to be true'
    18771863test/intl402/DateTimeFormat/prototype/formatToParts/dayPeriod-short-en.js:
    1878   default: 'Test262Error: length should be 1, 00:00, short format Expected SameValue(«5», «1») to be true'
    1879   strict mode: 'Test262Error: length should be 1, 00:00, short format Expected SameValue(«5», «1») to be true'
     1864  default: 'Test262Error: length should be 1, 00:00, short format Expected SameValue(«5», «1») to be true'
     1865  strict mode: 'Test262Error: length should be 1, 00:00, short format Expected SameValue(«5», «1») to be true'
    18801866test/intl402/DateTimeFormat/prototype/formatToParts/fractionalSecondDigits.js:
    1881   default: 'Test262Error: length should be 5, 1 fractionalSecondDigits round down Expected SameValue(«3», «5») to be true'
    1882   strict mode: 'Test262Error: length should be 5, 1 fractionalSecondDigits round down Expected SameValue(«3», «5») to be true'
     1867  default: 'Test262Error: length should be 5, 1 fractionalSecondDigits round down Expected SameValue(«3», «5») to be true'
     1868  strict mode: 'Test262Error: length should be 5, 1 fractionalSecondDigits round down Expected SameValue(«3», «5») to be true'
    18831869test/intl402/DateTimeFormat/prototype/formatToParts/pattern-on-calendar.js:
    1884   default: 'Test262Error: Expected SameValue(«false», «true») to be true'
    1885   strict mode: 'Test262Error: Expected SameValue(«false», «true») to be true'
     1870  default: 'Test262Error: Expected SameValue(«false», «true») to be true'
     1871  strict mode: 'Test262Error: Expected SameValue(«false», «true») to be true'
    18861872test/intl402/DateTimeFormat/prototype/formatToParts/related-year.js:
    1887   default: 'Test262Error: Expected SameValue(«false», «true») to be true'
    1888   strict mode: 'Test262Error: Expected SameValue(«false», «true») to be true'
     1873  default: 'Test262Error: Expected SameValue(«false», «true») to be true'
     1874  strict mode: 'Test262Error: Expected SameValue(«false», «true») to be true'
    18891875test/intl402/DateTimeFormat/prototype/resolvedOptions/order-dayPeriod.js:
    18901876  default: 'Test262Error: Expected [locale, calendar, numberingSystem, timeZone, hourCycle, hour12, hour, minute] and [locale, calendar, numberingSystem, timeZone, hourCycle, hour12, dayPeriod, hour, minute] to have the same contents. '
     
    18941880  strict mode: 'Test262Error: Expected [locale, calendar, numberingSystem, timeZone, minute, second] and [locale, calendar, numberingSystem, timeZone, minute, second, fractionalSecondDigits] to have the same contents. '
    18951881test/intl402/Intl/getCanonicalLocales/canonicalized-tags.js:
    1896   default: 'Test262Error: Expected SameValue(«cmn», «zh») to be true'
    1897   strict mode: 'Test262Error: Expected SameValue(«cmn», «zh») to be true'
     1882  default: 'Test262Error: Expected SameValue(«cmn», «zh») to be true'
     1883  strict mode: 'Test262Error: Expected SameValue(«cmn», «zh») to be true'
    18981884test/intl402/Intl/getCanonicalLocales/grandfathered.js:
    1899   default: 'Test262Error: Expected SameValue(«cmn», «zh») to be true'
    1900   strict mode: 'Test262Error: Expected SameValue(«cmn», «zh») to be true'
     1885  default: 'Test262Error: Expected SameValue(«cmn», «zh») to be true'
     1886  strict mode: 'Test262Error: Expected SameValue(«cmn», «zh») to be true'
    19011887test/intl402/Intl/getCanonicalLocales/invalid-tags.js:
    19021888  default: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.'
    19031889  strict mode: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.'
    19041890test/intl402/Intl/getCanonicalLocales/non-iana-canon.js:
    1905   default: 'Test262Error: The value of Intl.getCanonicalLocales(tag)[0] equals the value of `canonical` Expected SameValue(«aar-x-private», «aa-x-private») to be true'
    1906   strict mode: 'Test262Error: The value of Intl.getCanonicalLocales(tag)[0] equals the value of `canonical` Expected SameValue(«aar-x-private», «aa-x-private») to be true'
     1891  default: 'Test262Error: The value of Intl.getCanonicalLocales(tag)[0] equals the value of `canonical` Expected SameValue(«aar-x-private», «aa-x-private») to be true'
     1892  strict mode: 'Test262Error: The value of Intl.getCanonicalLocales(tag)[0] equals the value of `canonical` Expected SameValue(«aar-x-private», «aa-x-private») to be true'
    19071893test/intl402/Intl/getCanonicalLocales/preferred-grandfathered.js:
    1908   default: 'Test262Error: Expected SameValue(«cel-gaulish», «xtg-x-cel-gaulish») to be true'
    1909   strict mode: 'Test262Error: Expected SameValue(«cel-gaulish», «xtg-x-cel-gaulish») to be true'
     1894  default: 'Test262Error: Expected SameValue(«cel-gaulish», «xtg-x-cel-gaulish») to be true'
     1895  strict mode: 'Test262Error: Expected SameValue(«cel-gaulish», «xtg-x-cel-gaulish») to be true'
    19101896test/intl402/Intl/getCanonicalLocales/preferred-variant.js:
    1911   default: 'Test262Error: Expected SameValue(«ja-Latn-alalc97», «ja-Latn-hepburn-heploc») to be true'
    1912   strict mode: 'Test262Error: Expected SameValue(«ja-Latn-alalc97», «ja-Latn-hepburn-heploc») to be true'
     1897  default: 'Test262Error: Expected SameValue(«ja-Latn-alalc97», «ja-Latn-hepburn-heploc») to be true'
     1898  strict mode: 'Test262Error: Expected SameValue(«ja-Latn-alalc97», «ja-Latn-hepburn-heploc») to be true'
    19131899test/intl402/NumberFormat/constructor-numberingSystem-order.js:
    19141900  default: 'Test262Error: Expected [localeMatcher, style] and [localeMatcher, numberingSystem, style] to have the same contents. '
     
    19181904  strict mode: 'Test262Error: Exception from numberingSystem getter should be propagated Expected a CustomError to be thrown but no exception was thrown at all'
    19191905test/intl402/NumberFormat/numbering-system-options.js:
    1920   default: "Test262Error: Options value for property numberingSystem doesn't override locale extension key nu. Expected SameValue(«arab», «latn») to be true"
    1921   strict mode: "Test262Error: Options value for property numberingSystem doesn't override locale extension key nu. Expected SameValue(«arab», «latn») to be true"
     1906  default: "Test262Error: Options value for property numberingSystem doesn't override locale extension key nu. Expected SameValue(«arab», «latn») to be true"
     1907  strict mode: "Test262Error: Options value for property numberingSystem doesn't override locale extension key nu. Expected SameValue(«arab», «latn») to be true"
    19221908test/intl402/NumberFormat/proto-from-ctor-realm.js:
    1923   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
    1924   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
     1909  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
     1910  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
    19251911test/intl402/NumberFormat/prototype/format/format-negative-numbers.js:
    1926   default: 'Test262Error: Intl.NumberFormat is formatting 0 and -0 the same way. Expected SameValue(«0», «0») to be false'
    1927   strict mode: 'Test262Error: Intl.NumberFormat is formatting 0 and -0 the same way. Expected SameValue(«0», «0») to be false'
     1912  default: 'Test262Error: Intl.NumberFormat is formatting 0 and -0 the same way. Expected SameValue(«0», «0») to be false'
     1913  strict mode: 'Test262Error: Intl.NumberFormat is formatting 0 and -0 the same way. Expected SameValue(«0», «0») to be false'
    19281914test/intl402/PluralRules/proto-from-ctor-realm.js:
    1929   default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
    1930   strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
     1915  default: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
     1916  strict mode: 'Test262Error: newTarget.prototype is undefined Expected SameValue(«[object Object]», «[object Object]») to be true'
    19311917test/intl402/language-tags-invalid.js:
    19321918  default: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.'
    19331919  strict mode: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.'
    19341920test/intl402/supportedLocalesOf-returned-array-elements-are-not-frozen.js:
    1935   default: 'Test262Error: Property 0 of object returned by SupportedLocales is not writable. Expected SameValue(«false», «true») to be true (Testing with Collator.)'
    1936   strict mode: 'Test262Error: Property 0 of object returned by SupportedLocales is not writable. Expected SameValue(«false», «true») to be true (Testing with Collator.)'
     1921  default: 'Test262Error: Property 0 of object returned by SupportedLocales is not writable. Expected SameValue(«false», «true») to be true (Testing with Collator.)'
     1922  strict mode: 'Test262Error: Property 0 of object returned by SupportedLocales is not writable. Expected SameValue(«false», «true») to be true (Testing with Collator.)'
    19371923test/language/arguments-object/mapped/nonconfigurable-nonenumerable-nonwritable-descriptors-set-by-arguments.js:
    19381924  default: 'Test262Error: Expected obj[0] to have enumerable:false.'
     
    20782064  strict mode: 'Test262Error: Expected [0, 1] and [0] to have the same contents. order set for key1'
    20792065test/language/computed-property-names/to-name-side-effects/object.js:
    2080   default: 'Test262Error: The result of `counter++` is `0` Expected SameValue(«1», «0») to be true'
    2081   strict mode: 'Test262Error: The result of `counter++` is `0` Expected SameValue(«1», «0») to be true'
     2066  default: 'Test262Error: The result of `counter++` is `0` Expected SameValue(«1», «0») to be true'
     2067  strict mode: 'Test262Error: The result of `counter++` is `0` Expected SameValue(«1», «0») to be true'
    20822068test/language/eval-code/direct/new.target-arrow.js:
    2083   default: 'Test262Error: Expected SameValue(«function ReferenceError() {'
    2084   strict mode: 'Test262Error: Expected SameValue(«function ReferenceError() {'
     2069  default: 'Test262Error: Expected SameValue(«function ReferenceError() {'
     2070  strict mode: 'Test262Error: Expected SameValue(«function ReferenceError() {'
    20852071test/language/eval-code/direct/non-definable-function-with-function.js:
    2086   default: 'Test262Error: Expected SameValue(«[object Object]», «undefined») to be true'
     2072  default: 'Test262Error: Expected SameValue(«[object Object]», «undefined») to be true'
    20872073test/language/eval-code/direct/non-definable-function-with-variable.js:
    2088   default: 'Test262Error: Expected SameValue(«[object Object]», «undefined») to be true'
     2074  default: 'Test262Error: Expected SameValue(«[object Object]», «undefined») to be true'
    20892075test/language/eval-code/direct/non-definable-global-function.js:
    20902076  default: 'Test262Error: Expected true but got false'
     
    20982084  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    20992085test/language/eval-code/indirect/non-definable-function-with-function.js:
    2100   default: 'Test262Error: declaration preceding Expected SameValue(«[object Object]», «undefined») to be true'
    2101   strict mode: 'Test262Error: declaration preceding Expected SameValue(«[object Object]», «undefined») to be true'
     2086  default: 'Test262Error: declaration preceding Expected SameValue(«[object Object]», «undefined») to be true'
     2087  strict mode: 'Test262Error: declaration preceding Expected SameValue(«[object Object]», «undefined») to be true'
    21022088test/language/eval-code/indirect/non-definable-function-with-variable.js:
    2103   default: 'Test262Error: declaration preceding Expected SameValue(«[object Object]», «undefined») to be true'
    2104   strict mode: 'Test262Error: declaration preceding Expected SameValue(«[object Object]», «undefined») to be true'
     2089  default: 'Test262Error: declaration preceding Expected SameValue(«[object Object]», «undefined») to be true'
     2090  strict mode: 'Test262Error: declaration preceding Expected SameValue(«[object Object]», «undefined») to be true'
    21052091test/language/eval-code/indirect/non-definable-global-function.js:
    21062092  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
     
    21132099  strict mode: 'Test262Error: Expected obj[f] to have enumerable:true.'
    21142100test/language/eval-code/indirect/var-env-global-lex-non-strict.js:
    2115   default: 'Test262Error: Expected SameValue(«function TypeError() {'
    2116   strict mode: 'Test262Error: Expected SameValue(«function TypeError() {'
     2101  default: 'Test262Error: Expected SameValue(«function TypeError() {'
     2102  strict mode: 'Test262Error: Expected SameValue(«function TypeError() {'
    21172103test/language/expressions/arrow-function/scope-body-lex-distinct.js:
    21182104  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    21192105test/language/expressions/arrow-function/scope-param-elem-var-close.js:
    2120   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2106  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    21212107test/language/expressions/arrow-function/scope-param-elem-var-open.js:
    2122   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2108  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    21232109test/language/expressions/arrow-function/scope-param-rest-elem-var-close.js:
    2124   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2110  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    21252111test/language/expressions/assignment/S11.13.1_A5_T4.js:
    21262112  default: "ReferenceError: Can't find variable: x"
     
    21532139  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    21542140test/language/expressions/assignment/dstr/array-elem-iter-rtrn-close.js:
    2155   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    2156   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     2141  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     2142  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    21572143test/language/expressions/assignment/dstr/array-elem-iter-thrw-close-err.js:
    2158   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    2159   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2144  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2145  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    21602146test/language/expressions/assignment/dstr/array-elem-iter-thrw-close.js:
    2161   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    2162   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2147  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2148  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    21632149test/language/expressions/assignment/dstr/array-elem-trlg-iter-list-rtrn-close-err.js:
    21642150  default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all'
     
    21682154  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    21692155test/language/expressions/assignment/dstr/array-elem-trlg-iter-list-rtrn-close.js:
    2170   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    2171   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     2156  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     2157  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    21722158test/language/expressions/assignment/dstr/array-elem-trlg-iter-list-thrw-close-err.js:
    2173   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    2174   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2159  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2160  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    21752161test/language/expressions/assignment/dstr/array-elem-trlg-iter-list-thrw-close.js:
    2176   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    2177   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2162  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2163  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    21782164test/language/expressions/assignment/dstr/array-elem-trlg-iter-rest-rtrn-close-err.js:
    21792165  default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all'
     
    21832169  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    21842170test/language/expressions/assignment/dstr/array-elem-trlg-iter-rest-rtrn-close.js:
    2185   default: 'Test262Error: Expected SameValue(«11», «1») to be true'
    2186   strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
     2171  default: 'Test262Error: Expected SameValue(«11», «1») to be true'
     2172  strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
    21872173test/language/expressions/assignment/dstr/array-elem-trlg-iter-rest-thrw-close-err.js:
    2188   default: 'Test262Error: Expected SameValue(«11», «1») to be true'
    2189   strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
     2174  default: 'Test262Error: Expected SameValue(«11», «1») to be true'
     2175  strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
    21902176test/language/expressions/assignment/dstr/array-elem-trlg-iter-rest-thrw-close.js:
    2191   default: 'Test262Error: Expected SameValue(«11», «1») to be true'
    2192   strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
     2177  default: 'Test262Error: Expected SameValue(«11», «1») to be true'
     2178  strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
    21932179test/language/expressions/assignment/dstr/array-rest-iter-rtrn-close-err.js:
    21942180  default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')"
     
    22012187  strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')"
    22022188test/language/expressions/assignment/dstr/array-rest-iter-thrw-close-err.js:
    2203   default: 'Test262Error: Expected SameValue(«11», «0») to be true'
    2204   strict mode: 'Test262Error: Expected SameValue(«11», «0») to be true'
     2189  default: 'Test262Error: Expected SameValue(«11», «0») to be true'
     2190  strict mode: 'Test262Error: Expected SameValue(«11», «0») to be true'
    22052191test/language/expressions/assignment/dstr/array-rest-iter-thrw-close.js:
    2206   default: 'Test262Error: Expected SameValue(«11», «0») to be true'
    2207   strict mode: 'Test262Error: Expected SameValue(«11», «0») to be true'
     2192  default: 'Test262Error: Expected SameValue(«11», «0») to be true'
     2193  strict mode: 'Test262Error: Expected SameValue(«11», «0») to be true'
    22082194test/language/expressions/assignment/dstr/array-rest-lref-err.js:
    2209   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    2210   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2195  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     2196  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    22112197test/language/expressions/assignment/dstr/ident-name-prop-name-literal-break-escaped.js:
    22122198  default: "SyntaxError: Unexpected escaped characters in keyword token: 'bre\\u0061k'"
     
    22872273  default: 'Test262: This statement should not be evaluated.'
    22882274test/language/expressions/async-generator/generator-created-after-decl-inst.js:
    2289   default: 'Test262Error: Expected SameValue(«[object AsyncGenerator]», «[object AsyncGenerator]») to be false'
    2290   strict mode: 'Test262Error: Expected SameValue(«[object AsyncGenerator]», «[object AsyncGenerator]») to be false'
     2275  default: 'Test262Error: Expected SameValue(«[object AsyncGenerator]», «[object AsyncGenerator]») to be false'
     2276  strict mode: 'Test262Error: Expected SameValue(«[object AsyncGenerator]», «[object AsyncGenerator]») to be false'
    22912277test/language/expressions/call/eval-realm-indirect.js:
    2292   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2278  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    22932279test/language/expressions/call/eval-spread-empty-leading.js:
    2294   default: 'Test262Error: Expected SameValue(«local», «0») to be true'
    2295   strict mode: 'Test262Error: Expected SameValue(«local», «0») to be true'
     2280  default: 'Test262Error: Expected SameValue(«local», «0») to be true'
     2281  strict mode: 'Test262Error: Expected SameValue(«local», «0») to be true'
    22962282test/language/expressions/call/eval-spread-empty-trailing.js:
    2297   default: 'Test262Error: Expected SameValue(«local», «0») to be true'
    2298   strict mode: 'Test262Error: Expected SameValue(«local», «0») to be true'
     2283  default: 'Test262Error: Expected SameValue(«local», «0») to be true'
     2284  strict mode: 'Test262Error: Expected SameValue(«local», «0») to be true'
    22992285test/language/expressions/call/eval-spread.js:
    2300   default: 'Test262Error: Expected SameValue(«local», «1») to be true'
    2301   strict mode: 'Test262Error: Expected SameValue(«local», «1») to be true'
     2286  default: 'Test262Error: Expected SameValue(«local», «1») to be true'
     2287  strict mode: 'Test262Error: Expected SameValue(«local», «1») to be true'
    23022288test/language/expressions/call/tco-cross-realm-class-construct.js:
    23032289  default: 'Test262Error: Expected a TypeError but got a TypeError'
     
    26312617  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    26322618test/language/expressions/function/scope-param-elem-var-close.js:
    2633   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2619  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    26342620test/language/expressions/function/scope-param-elem-var-open.js:
    2635   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2621  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    26362622test/language/expressions/function/scope-param-rest-elem-var-close.js:
    2637   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2623  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    26382624test/language/expressions/generators/generator-created-after-decl-inst.js:
    2639   default: 'Test262Error: Expected SameValue(«[object Generator]», «[object Generator]») to be false'
    2640   strict mode: 'Test262Error: Expected SameValue(«[object Generator]», «[object Generator]») to be false'
     2625  default: 'Test262Error: Expected SameValue(«[object Generator]», «[object Generator]») to be false'
     2626  strict mode: 'Test262Error: Expected SameValue(«[object Generator]», «[object Generator]») to be false'
    26412627test/language/expressions/generators/scope-body-lex-distinct.js:
    26422628  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    26432629test/language/expressions/generators/scope-param-elem-var-close.js:
    2644   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2630  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    26452631test/language/expressions/generators/scope-param-elem-var-open.js:
    2646   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2632  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    26472633test/language/expressions/generators/scope-param-rest-elem-var-close.js:
    2648   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     2634  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    26492635test/language/expressions/import.meta/import-meta-is-an-ordinary-object.js:
    26502636  module: 'SyntaxError: Cannot use new with import.'
     
    26652651  strict mode: 'SyntaxError: Attempted to redefine __proto__ property.'
    26662652test/language/expressions/object/computed-property-evaluation-order.js:
    2667   default: 'Test262Error: Expected SameValue(«2», «1») to be true'
    2668   strict mode: 'Test262Error: Expected SameValue(«2», «1») to be true'
     2653  default: 'Test262Error: Expected SameValue(«2», «1») to be true'
     2654  strict mode: 'Test262Error: Expected SameValue(«2», «1») to be true'
    26692655test/language/expressions/object/covered-ident-name-prop-name-literal-break-escaped.js:
    26702656  default: "SyntaxError: Unexpected escaped characters in keyword token: 'bre\\u0061k'"
     
    30423028  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    30433029test/language/expressions/object/scope-gen-meth-param-elem-var-close.js:
    3044   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3030  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    30453031test/language/expressions/object/scope-gen-meth-param-elem-var-open.js:
    3046   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3032  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    30473033test/language/expressions/object/scope-gen-meth-param-rest-elem-var-close.js:
    3048   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3034  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    30493035test/language/expressions/object/scope-getter-body-lex-distinc.js:
    30503036  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
     
    30523038  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    30533039test/language/expressions/object/scope-meth-param-elem-var-close.js:
    3054   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3040  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    30553041test/language/expressions/object/scope-meth-param-elem-var-open.js:
    3056   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3042  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    30573043test/language/expressions/object/scope-meth-param-rest-elem-var-close.js:
    3058   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3044  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    30593045test/language/expressions/object/scope-setter-body-lex-distinc.js:
    30603046  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
     
    31193105  strict mode: 'Test262Error: should not be called'
    31203106test/language/expressions/super/call-proto-not-ctor.js:
    3121   default: 'Test262Error: did not perform ArgumentsListEvaluation Expected SameValue(«true», «false») to be true'
    3122   strict mode: 'Test262Error: did not perform ArgumentsListEvaluation Expected SameValue(«true», «false») to be true'
     3107  default: 'Test262Error: did not perform ArgumentsListEvaluation Expected SameValue(«true», «false») to be true'
     3108  strict mode: 'Test262Error: did not perform ArgumentsListEvaluation Expected SameValue(«true», «false») to be true'
    31233109test/language/expressions/super/prop-poisoned-underscore-proto.js:
    31243110  default: 'Test262Error: should not be called'
     
    31283114  strict mode: 'Test262Error: 0n >>> {[Symbol.toPrimitive]: function() {throw new MyError();}} throws MyError Expected a MyError but got a TypeError'
    31293115test/language/expressions/yield/star-iterable.js:
    3130   default: 'Test262Error: First result `done` flag Expected SameValue(«false», «undefined») to be true'
    3131   strict mode: 'Test262Error: First result `done` flag Expected SameValue(«false», «undefined») to be true'
     3116  default: 'Test262Error: First result `done` flag Expected SameValue(«false», «undefined») to be true'
     3117  strict mode: 'Test262Error: First result `done` flag Expected SameValue(«false», «undefined») to be true'
    31323118test/language/expressions/yield/star-rhs-iter-nrml-res-done-no-value.js:
    3133   default: 'Test262Error: access count (first iteration) Expected SameValue(«1», «0») to be true'
    3134   strict mode: 'Test262Error: access count (first iteration) Expected SameValue(«1», «0») to be true'
     3119  default: 'Test262Error: access count (first iteration) Expected SameValue(«1», «0») to be true'
     3120  strict mode: 'Test262Error: access count (first iteration) Expected SameValue(«1», «0») to be true'
    31353121test/language/expressions/yield/star-rhs-iter-rtrn-res-done-no-value.js:
    3136   default: 'Test262Error: access count (second iteration) Expected SameValue(«1», «0») to be true'
    3137   strict mode: 'Test262Error: access count (second iteration) Expected SameValue(«1», «0») to be true'
     3122  default: 'Test262Error: access count (second iteration) Expected SameValue(«1», «0») to be true'
     3123  strict mode: 'Test262Error: access count (second iteration) Expected SameValue(«1», «0») to be true'
    31383124test/language/expressions/yield/star-rhs-iter-thrw-res-done-no-value.js:
    3139   default: 'Test262Error: access count (second iteration) Expected SameValue(«1», «0») to be true'
    3140   strict mode: 'Test262Error: access count (second iteration) Expected SameValue(«1», «0») to be true'
     3125  default: 'Test262Error: access count (second iteration) Expected SameValue(«1», «0») to be true'
     3126  strict mode: 'Test262Error: access count (second iteration) Expected SameValue(«1», «0») to be true'
    31413127test/language/function-code/each-param-has-own-non-shared-eval-scope.js:
    31423128  default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all'
     
    31443130  default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all'
    31453131test/language/function-code/eval-param-env-with-computed-key.js:
    3146   default: 'Test262Error: Expected SameValue(«inner», «outer») to be true'
     3132  default: 'Test262Error: Expected SameValue(«inner», «outer») to be true'
    31473133test/language/function-code/eval-param-env-with-prop-initializer.js:
    3148   default: 'Test262Error: Expected SameValue(«inner», «outer») to be true'
     3134  default: 'Test262Error: Expected SameValue(«inner», «outer») to be true'
    31493135test/language/global-code/script-decl-func-err-non-configurable.js:
    31503136  default: 'Test262Error: writable, non-enumerable data property Expected a TypeError to be thrown but no exception was thrown at all'
     
    32623248  module: "SyntaxError: Unexpected identifier 'as'. Expected 'from' before exported module name."
    32633249test/language/module-code/namespace/internals/define-own-property.js:
    3264   module: 'Test262Error: Reflect.defineProperty: local1 Expected SameValue(«false», «true») to be true'
     3250  module: 'Test262Error: Reflect.defineProperty: local1 Expected SameValue(«false», «true») to be true'
    32653251test/language/module-code/namespace/internals/get-nested-namespace-dflt-skip.js:
    32663252  module: "SyntaxError: Unexpected identifier 'as'. Expected 'from' before exported module name."
     
    32703256  module: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all'
    32713257test/language/module-code/namespace/internals/set.js:
    3272   module: 'Test262Error: Reflect.defineProperty: local1 Expected SameValue(«false», «true») to be true'
     3258  module: 'Test262Error: Reflect.defineProperty: local1 Expected SameValue(«false», «true») to be true'
    32733259test/language/module-code/parse-err-hoist-lex-fun.js:
    32743260  module: 'Test262: This statement should not be evaluated.'
     
    32763262  module: 'Test262: This statement should not be evaluated.'
    32773263test/language/statements/async-generator/generator-created-after-decl-inst.js:
    3278   default: 'Test262Error: Expected SameValue(«[object AsyncGenerator]», «[object AsyncGenerator]») to be false'
    3279   strict mode: 'Test262Error: Expected SameValue(«[object AsyncGenerator]», «[object AsyncGenerator]») to be false'
     3264  default: 'Test262Error: Expected SameValue(«[object AsyncGenerator]», «[object AsyncGenerator]») to be false'
     3265  strict mode: 'Test262Error: Expected SameValue(«[object AsyncGenerator]», «[object AsyncGenerator]») to be false'
    32803266test/language/statements/class/class-name-ident-await-escaped.js:
    32813267  default: "SyntaxError: Unexpected escaped characters in keyword token: 'aw\\u0061it'"
     
    34303416  strict mode: 'Test262Error: should not be called'
    34313417test/language/statements/class/subclass/bound-function.js:
    3432   default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    3433   strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     3418  default: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
     3419  strict mode: 'Test262Error: Expected SameValue(«[object Object]», «[object Object]») to be true'
    34343420test/language/statements/class/subclass/builtin-objects/ArrayBuffer/regular-subclassing.js:
    34353421  default: 'Test262Error: Expected true but got false'
    34363422  strict mode: 'Test262Error: Expected true but got false'
    34373423test/language/statements/class/subclass/class-definition-null-proto-super.js:
    3438   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    3439   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3424  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3425  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    34403426test/language/statements/class/subclass/class-definition-superclass-generator.js:
    34413427  default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
     
    34543440  default: 'Test262: This statement should not be evaluated.'
    34553441test/language/statements/for-in/12.6.4-2.js:
    3456   default: 'Test262Error: accessedProp Expected SameValue(«true», «false») to be true'
    3457   strict mode: 'Test262Error: accessedProp Expected SameValue(«true», «false») to be true'
     3442  default: 'Test262Error: accessedProp Expected SameValue(«true», «false») to be true'
     3443  strict mode: 'Test262Error: accessedProp Expected SameValue(«true», «false») to be true'
    34583444test/language/statements/for-in/dstr/array-elem-nested-array-invalid.js:
    34593445  default: 'Test262: This statement should not be evaluated.'
     
    35423528  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    35433529test/language/statements/for-of/dstr/array-elem-iter-rtrn-close.js:
    3544   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    3545   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     3530  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     3531  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    35463532test/language/statements/for-of/dstr/array-elem-iter-thrw-close-err.js:
    3547   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    3548   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3533  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3534  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    35493535test/language/statements/for-of/dstr/array-elem-iter-thrw-close.js:
    3550   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    3551   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3536  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3537  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    35523538test/language/statements/for-of/dstr/array-elem-nested-array-invalid.js:
    35533539  default: 'Test262: This statement should not be evaluated.'
     
    35713557  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    35723558test/language/statements/for-of/dstr/array-elem-trlg-iter-list-rtrn-close.js:
    3573   default: 'Test262Error: Expected SameValue(«0», «1») to be true'
    3574   strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
     3559  default: 'Test262Error: Expected SameValue(«0», «1») to be true'
     3560  strict mode: 'Test262Error: Expected SameValue(«0», «1») to be true'
    35753561test/language/statements/for-of/dstr/array-elem-trlg-iter-list-thrw-close-err.js:
    3576   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    3577   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3562  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3563  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    35783564test/language/statements/for-of/dstr/array-elem-trlg-iter-list-thrw-close.js:
    3579   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    3580   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3565  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3566  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    35813567test/language/statements/for-of/dstr/array-elem-trlg-iter-rest-rtrn-close-err.js:
    35823568  default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all'
     
    35863572  strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all'
    35873573test/language/statements/for-of/dstr/array-elem-trlg-iter-rest-rtrn-close.js:
    3588   default: 'Test262Error: Expected SameValue(«11», «1») to be true'
    3589   strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
     3574  default: 'Test262Error: Expected SameValue(«11», «1») to be true'
     3575  strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
    35903576test/language/statements/for-of/dstr/array-elem-trlg-iter-rest-thrw-close-err.js:
    3591   default: 'Test262Error: Expected SameValue(«11», «1») to be true'
    3592   strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
     3577  default: 'Test262Error: Expected SameValue(«11», «1») to be true'
     3578  strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
    35933579test/language/statements/for-of/dstr/array-elem-trlg-iter-rest-thrw-close.js:
    3594   default: 'Test262Error: Expected SameValue(«11», «1») to be true'
    3595   strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
     3580  default: 'Test262Error: Expected SameValue(«11», «1») to be true'
     3581  strict mode: 'Test262Error: Expected SameValue(«11», «1») to be true'
    35963582test/language/statements/for-of/dstr/array-rest-before-element.js:
    35973583  default: 'Test262: This statement should not be evaluated.'
     
    36193605  strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')"
    36203606test/language/statements/for-of/dstr/array-rest-iter-thrw-close-err.js:
    3621   default: 'Test262Error: Expected SameValue(«11», «0») to be true'
    3622   strict mode: 'Test262Error: Expected SameValue(«11», «0») to be true'
     3607  default: 'Test262Error: Expected SameValue(«11», «0») to be true'
     3608  strict mode: 'Test262Error: Expected SameValue(«11», «0») to be true'
    36233609test/language/statements/for-of/dstr/array-rest-iter-thrw-close.js:
    3624   default: 'Test262Error: Expected SameValue(«11», «0») to be true'
    3625   strict mode: 'Test262Error: Expected SameValue(«11», «0») to be true'
     3610  default: 'Test262Error: Expected SameValue(«11», «0») to be true'
     3611  strict mode: 'Test262Error: Expected SameValue(«11», «0») to be true'
    36263612test/language/statements/for-of/dstr/array-rest-lref-err.js:
    3627   default: 'Test262Error: Expected SameValue(«1», «0») to be true'
    3628   strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3613  default: 'Test262Error: Expected SameValue(«1», «0») to be true'
     3614  strict mode: 'Test262Error: Expected SameValue(«1», «0») to be true'
    36293615test/language/statements/for-of/dstr/array-rest-nested-array-invalid.js:
    36303616  default: 'Test262: This statement should not be evaluated.'
     
    36843670  default: 'Test262: This statement should not be evaluated.'
    36853671test/language/statements/for/scope-body-lex-open.js:
    3686   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    3687   strict mode: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3672  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3673  strict mode: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    36883674test/language/statements/function/scope-body-lex-distinct.js:
    36893675  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    36903676test/language/statements/function/scope-param-elem-var-close.js:
    3691   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3677  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    36923678test/language/statements/function/scope-param-elem-var-open.js:
    3693   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3679  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    36943680test/language/statements/function/scope-param-rest-elem-var-close.js:
    3695   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3681  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    36963682test/language/statements/generators/generator-created-after-decl-inst.js:
    3697   default: 'Test262Error: Expected SameValue(«[object Generator]», «[object Generator]») to be false'
    3698   strict mode: 'Test262Error: Expected SameValue(«[object Generator]», «[object Generator]») to be false'
     3683  default: 'Test262Error: Expected SameValue(«[object Generator]», «[object Generator]») to be false'
     3684  strict mode: 'Test262Error: Expected SameValue(«[object Generator]», «[object Generator]») to be false'
    36993685test/language/statements/generators/scope-body-lex-distinct.js:
    37003686  default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all'
    37013687test/language/statements/generators/scope-param-elem-var-close.js:
    3702   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3688  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    37033689test/language/statements/generators/scope-param-elem-var-open.js:
    3704   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3690  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    37053691test/language/statements/generators/scope-param-rest-elem-var-close.js:
    3706   default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
     3692  default: 'Test262Error: Expected SameValue(«inside», «outside») to be true'
    37073693test/language/statements/if/if-async-fun-else-async-fun.js:
    37083694  default: 'Test262: This statement should not be evaluated.'
     
    38623848  default: 'Test262: This statement should not be evaluated.'
    38633849test/language/types/reference/put-value-prop-base-primitive-realm.js:
    3864   default: 'Test262Error: number Expected SameValue(«0», «1») to be true'
    3865   strict mode: 'Test262Error: number Expected SameValue(«0», «1») to be true'
     3850  default: 'Test262Error: number Expected SameValue(«0», «1») to be true'
     3851  strict mode: 'Test262Error: number Expected SameValue(«0», «1») to be true'
    38663852test/language/types/reference/put-value-prop-base-primitive.js:
    3867   default: 'Test262Error: number Expected SameValue(«0», «1») to be true'
     3853  default: 'Test262Error: number Expected SameValue(«0», «1») to be true'
    38683854  strict mode: 'TypeError: Attempted to assign to readonly property.'
  • trunk/Tools/ChangeLog

    r252963 r252964  
     12019-11-30  Ross Kirsling  <ross.kirsling@sony.com>
     2
     3        test262-runner should dump YAML with correct encoding
     4        https://bugs.webkit.org/show_bug.cgi?id=204493
     5
     6        Reviewed by Saam Barati.
     7
     8        Even though we spit out correctly-encoded output to the terminal, Perl's YAML module insists upon *re*-encoding
     9        to UTF-8 when dumping to file. This works out in the end because an analogous double-decode occurs when loading
     10        from file. Still, it's really annoying that expectations.yaml has garbled (i.e. double-encoded) text.
     11
     12        We shouldn't modify libraries directly, but we can copy-paste DumpFile/LoadFile into Runner.pm and tweak!
     13
     14        * Scripts/test262/Runner.pm:
     15        (DumpFile):
     16        (LoadFile):
     17        Add custom versions of DumpFile/LoadFile which do not execute `binmode $OUT, ':utf8';`.
     18
    1192019-11-30  Zalan Bujtas  <zalan@apple.com>
    220
  • trunk/Tools/Scripts/test262/Runner.pm

    r252930 r252964  
    6161}
    6262
    63 use YAML qw(Load LoadFile Dump DumpFile Bless);
     63use YAML qw(Load Dump Bless);
    6464use Parallel::ForkManager;
    6565use Getopt::Long qw(GetOptions);
     66
     67# Tweaked versions of YAML::DumpFile and YAML::LoadFile.
     68# The library versions unconditionally and erroneously assume that a UTF-8 encoding needs to be performed,
     69# meaning that the output file ends up double-encoded.
     70sub DumpFile {
     71    my $OUT;
     72    my $filename = shift;
     73    if (Scalar::Util::openhandle $filename) {
     74        $OUT = $filename;
     75    }
     76    else {
     77        my $mode = '>';
     78        if ($filename =~ /^\s*(>{1,2})\s*(.*)$/) {
     79            ($mode, $filename) = ($1, $2);
     80        }
     81        open $OUT, $mode, $filename
     82          or YAML::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT', $filename, "$!");
     83    }
     84    local $/ = "\n"; # reset special to "sane"
     85    print $OUT Dump(@_);
     86    unless (ref $filename eq 'GLOB') {
     87        close $OUT
     88          or do {
     89              my $errsav = $!;
     90              YAML::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT_CLOSE', $filename, $errsav);
     91          }
     92    }
     93}
     94sub LoadFile {
     95    my $IN;
     96    my $filename = shift;
     97    if (Scalar::Util::openhandle $filename) {
     98        $IN = $filename;
     99    }
     100    else {
     101        open $IN, '<', $filename
     102          or YAML::Mo::Object->die('YAML_LOAD_ERR_FILE_INPUT', $filename, "$!");
     103    }
     104    return Load(do { local $/; <$IN> });
     105}
    66106
    67107my $webkitdirIsAvailable;
Note: See TracChangeset for help on using the changeset viewer.