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