| 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 # asan's --omit-quit flag. | 408 # asan's --omit-quit flag. |
| 409 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], | 409 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], |
| 410 }], # asan == True | 410 }], # asan == True |
| 411 | 411 |
| 412 ['asan == True or msan == True or tsan == True', { | 412 ['asan == True or msan == True or tsan == True', { |
| 413 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 413 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 414 # The failed allocation causes an asan/msan/tsan error | 414 # The failed allocation causes an asan/msan/tsan error |
| 415 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 415 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
| 416 }], # asan == True or msan == True or tsan == True | 416 }], # asan == True or msan == True or tsan == True |
| 417 | 417 |
| 418 ['ignition == True', { | |
| 419 # TODO(rmcilroy,4681): Requires generator support. | |
| 420 'built-ins/GeneratorFunction/has-instance': [FAIL], | |
| 421 'built-ins/GeneratorFunction/instance-name': [FAIL], | |
| 422 'built-ins/GeneratorFunction/instance-restricted-properties': [FAIL], | |
| 423 'built-ins/GeneratorFunction/invoked-as-constructor-no-arguments': [FAIL], | |
| 424 'built-ins/GeneratorFunction/invoked-as-function-multiple-arguments': [FAIL], | |
| 425 'built-ins/GeneratorFunction/invoked-as-function-no-arguments': [FAIL], | |
| 426 'built-ins/GeneratorFunction/invoked-as-function-single-argument': [FAIL], | |
| 427 'built-ins/GeneratorPrototype/Symbol.toStringTag': [FAIL], | |
| 428 'built-ins/TypedArrays/object-arg-as-generator-iterable-returns': [FAIL], | |
| 429 'built-ins/TypedArrays/object-arg-iterating-throws': [FAIL], | |
| 430 'language/expressions/assignment/destructuring/array-elem-init-yield-expr': [F
AIL], | |
| 431 'language/expressions/assignment/destructuring/array-elem-nested-array-yield-e
xpr': [FAIL], | |
| 432 'language/expressions/assignment/destructuring/array-elem-nested-obj-yield-exp
r': [FAIL], | |
| 433 'language/expressions/assignment/destructuring/array-elem-target-yield-expr':
[FAIL], | |
| 434 'language/expressions/assignment/destructuring/array-rest-nested-array-yield-e
xpr': [FAIL], | |
| 435 'language/expressions/assignment/destructuring/array-rest-nested-obj-yield-exp
r': [FAIL], | |
| 436 'language/expressions/assignment/destructuring/array-rest-yield-expr': [FAIL], | |
| 437 'language/expressions/assignment/destructuring/obj-id-init-yield-expr': [FAIL]
, | |
| 438 'language/expressions/assignment/destructuring/obj-prop-elem-init-yield-expr':
[FAIL], | |
| 439 'language/expressions/assignment/destructuring/obj-prop-elem-target-yield-expr
': [FAIL], | |
| 440 'language/expressions/assignment/destructuring/obj-prop-nested-array-yield-exp
r': [FAIL], | |
| 441 'language/expressions/assignment/destructuring/obj-prop-nested-obj-yield-expr'
: [FAIL], | |
| 442 'language/expressions/object/method-definition/generator-prop-name-yield-expr'
: [FAIL], | |
| 443 'language/expressions/object/method-definition/name-prop-name-yield-expr': [FA
IL], | |
| 444 'language/object-literal/concise-generator': [FAIL], | |
| 445 'language/statements/class/subclass/builtin-objects/GeneratorFunction/instance
-length': [FAIL], | |
| 446 'language/statements/class/subclass/builtin-objects/GeneratorFunction/instance
-name': [FAIL], | |
| 447 'language/statements/class/subclass/builtin-objects/GeneratorFunction/instance
-prototype': [FAIL], | |
| 448 'language/statements/class/subclass/builtin-objects/GeneratorFunction/super-mu
st-be-called': [FAIL], | |
| 449 'language/statements/class/subclass/builtin-objects/GeneratorFunction/regular-
subclassing': [FAIL], | |
| 450 'language/statements/for-of/generator-next-error': [FAIL], | |
| 451 'language/statements/for-of/yield': [FAIL], | |
| 452 'language/statements/for-of/yield-from-catch': [FAIL], | |
| 453 'language/statements/for-of/yield-from-finally': [FAIL], | |
| 454 'language/statements/for-of/yield-from-try': [FAIL], | |
| 455 'language/statements/for-of/yield-star': [FAIL], | |
| 456 'language/statements/for-of/yield-star-from-catch': [FAIL], | |
| 457 'language/statements/for-of/yield-star-from-finally': [FAIL], | |
| 458 'language/statements/for-of/yield-star-from-try': [FAIL], | |
| 459 }], # ignition == True | |
| 460 | |
| 461 ] | 418 ] |
| OLD | NEW |