| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 166 |
| 167 # https://bugs.chromium.org/p/v8/issues/detail?id=4727 | 167 # https://bugs.chromium.org/p/v8/issues/detail?id=4727 |
| 168 'built-ins/TypedArrays/length-arg-is-undefined-throws': [FAIL], | 168 'built-ins/TypedArrays/length-arg-is-undefined-throws': [FAIL], |
| 169 'built-ins/TypedArrays/length-arg-is-symbol-throws': [FAIL], | 169 'built-ins/TypedArrays/length-arg-is-symbol-throws': [FAIL], |
| 170 'built-ins/TypedArrays/length-arg-is-float-throws-rangeerror': [FAIL], | 170 'built-ins/TypedArrays/length-arg-is-float-throws-rangeerror': [FAIL], |
| 171 'built-ins/TypedArrays/length-arg-is-nan-throws-rangeerror': [FAIL], | 171 'built-ins/TypedArrays/length-arg-is-nan-throws-rangeerror': [FAIL], |
| 172 | 172 |
| 173 # https://bugs.chromium.org/p/v8/issues/detail?id=4784 | 173 # https://bugs.chromium.org/p/v8/issues/detail?id=4784 |
| 174 'built-ins/TypedArrays/buffer-arg-defined-negative-length': [FAIL], | 174 'built-ins/TypedArrays/buffer-arg-defined-negative-length': [FAIL], |
| 175 | 175 |
| 176 # https://bugs.chromium.org/p/v8/issues/detail?id=4890 | |
| 177 'language/statements/class/subclass/default-constructor-spread-override': [FAI
L], | |
| 178 | |
| 179 # https://bugs.chromium.org/p/v8/issues/detail?id=4901 | 176 # https://bugs.chromium.org/p/v8/issues/detail?id=4901 |
| 180 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-greater-than-last-in
dex': [FAIL], | 177 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-greater-than-last-in
dex': [FAIL], |
| 181 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-lower-than-zero': [F
AIL], | 178 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-lower-than-zero': [F
AIL], |
| 182 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-minus-zero': [FAIL], | 179 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-minus-zero': [FAIL], |
| 183 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-not-integer': [FAIL]
, | 180 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-not-integer': [FAIL]
, |
| 184 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-numericindex-desc-no
t-writable': [FAIL], | 181 'built-ins/TypedArrays/internals/DefineOwnProperty/key-is-numericindex-desc-no
t-writable': [FAIL], |
| 185 'built-ins/TypedArrays/internals/Set/key-is-minus-zero': [FAIL], | 182 'built-ins/TypedArrays/internals/Set/key-is-minus-zero': [FAIL], |
| 186 'built-ins/TypedArrays/internals/Set/key-is-not-integer': [FAIL], | 183 'built-ins/TypedArrays/internals/Set/key-is-not-integer': [FAIL], |
| 187 'built-ins/TypedArrays/internals/Set/key-is-out-of-bounds': [FAIL], | 184 'built-ins/TypedArrays/internals/Set/key-is-out-of-bounds': [FAIL], |
| 188 'built-ins/TypedArrays/internals/Set/tonumber-value-throws': [FAIL], | 185 'built-ins/TypedArrays/internals/Set/tonumber-value-throws': [FAIL], |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], | 414 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], |
| 418 }], # asan == True | 415 }], # asan == True |
| 419 | 416 |
| 420 ['asan == True or msan == True or tsan == True', { | 417 ['asan == True or msan == True or tsan == True', { |
| 421 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 418 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 422 # The failed allocation causes an asan/msan/tsan error | 419 # The failed allocation causes an asan/msan/tsan error |
| 423 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 420 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
| 424 }], # asan == True or msan == True or tsan == True | 421 }], # asan == True or msan == True or tsan == True |
| 425 | 422 |
| 426 ] | 423 ] |
| OLD | NEW |