| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 # https://bugs.chromium.org/p/v8/issues/detail?id=896 | 257 # https://bugs.chromium.org/p/v8/issues/detail?id=896 |
| 258 'language/literals/regexp/early-err-pattern': [FAIL], | 258 'language/literals/regexp/early-err-pattern': [FAIL], |
| 259 | 259 |
| 260 # https://bugs.chromium.org/p/v8/issues/detail?id=4628 | 260 # https://bugs.chromium.org/p/v8/issues/detail?id=4628 |
| 261 'language/eval-code/direct/non-definable-function-with-function': [FAIL], | 261 'language/eval-code/direct/non-definable-function-with-function': [FAIL], |
| 262 'language/eval-code/direct/non-definable-function-with-variable': [FAIL], | 262 'language/eval-code/direct/non-definable-function-with-variable': [FAIL], |
| 263 'language/eval-code/indirect/non-definable-function-with-function': [FAIL], | 263 'language/eval-code/indirect/non-definable-function-with-function': [FAIL], |
| 264 'language/eval-code/indirect/non-definable-function-with-variable': [FAIL], | 264 'language/eval-code/indirect/non-definable-function-with-variable': [FAIL], |
| 265 | 265 |
| 266 # https://bugs.chromium.org/p/v8/issues/detail?id=4955 | |
| 267 'language/eval-code/direct/var-env-global-lex-non-strict': [FAIL], | |
| 268 'language/eval-code/direct/var-env-lower-lex-non-strict': [FAIL], | |
| 269 'language/eval-code/indirect/var-env-global-lex-non-strict': [FAIL], | |
| 270 | |
| 271 # https://bugs.chromium.org/p/v8/issues/detail?id=4124 | 266 # https://bugs.chromium.org/p/v8/issues/detail?id=4124 |
| 272 'built-ins/Simd/*': [SKIP], | 267 'built-ins/Simd/*': [SKIP], |
| 273 | 268 |
| 274 # https://bugs.chromium.org/p/v8/issues/detail?id=4958 | 269 # https://bugs.chromium.org/p/v8/issues/detail?id=4958 |
| 275 'built-ins/Function/prototype/toString/Function': [FAIL], | 270 'built-ins/Function/prototype/toString/Function': [FAIL], |
| 276 'built-ins/Function/prototype/toString/GeneratorFunction': [FAIL], | 271 'built-ins/Function/prototype/toString/GeneratorFunction': [FAIL], |
| 277 'built-ins/Function/prototype/toString/function-declaration': [FAIL], | 272 'built-ins/Function/prototype/toString/function-declaration': [FAIL], |
| 278 'built-ins/Function/prototype/toString/function-declaration-non-simple-paramet
er-list': [FAIL], | 273 'built-ins/Function/prototype/toString/function-declaration-non-simple-paramet
er-list': [FAIL], |
| 279 'built-ins/Function/prototype/toString/function-expression': [FAIL], | 274 'built-ins/Function/prototype/toString/function-expression': [FAIL], |
| 280 'built-ins/Function/prototype/toString/generator-function-declaration': [FAIL]
, | 275 'built-ins/Function/prototype/toString/generator-function-declaration': [FAIL]
, |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], | 422 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], |
| 428 }], # asan == True | 423 }], # asan == True |
| 429 | 424 |
| 430 ['asan == True or msan == True or tsan == True', { | 425 ['asan == True or msan == True or tsan == True', { |
| 431 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 426 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 432 # The failed allocation causes an asan/msan/tsan error | 427 # The failed allocation causes an asan/msan/tsan error |
| 433 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 428 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
| 434 }], # asan == True or msan == True or tsan == True | 429 }], # asan == True or msan == True or tsan == True |
| 435 | 430 |
| 436 ] | 431 ] |
| OLD | NEW |