OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 # Issue 3641: The new 'then' semantics suppress some exceptions. | 56 # Issue 3641: The new 'then' semantics suppress some exceptions. |
57 # These tests may be changed or removed when 'chain' is deprecated. | 57 # These tests may be changed or removed when 'chain' is deprecated. |
58 'es6/debug-promises/reject-with-throw-in-reject': [FAIL], | 58 'es6/debug-promises/reject-with-throw-in-reject': [FAIL], |
59 'es6/debug-promises/reject-with-undefined-reject': [FAIL], | 59 'es6/debug-promises/reject-with-undefined-reject': [FAIL], |
60 'es6/debug-promises/reject-with-invalid-reject': [FAIL], | 60 'es6/debug-promises/reject-with-invalid-reject': [FAIL], |
61 | 61 |
62 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 62 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
63 # not work, but we expect it to not crash. | 63 # not work, but we expect it to not crash. |
64 'debug-step-turbofan': [PASS, FAIL], | 64 'debug-step-turbofan': [PASS, FAIL], |
65 | 65 |
| 66 # Issue 5587: The eval'ed code is piped through Ignition and fails when being |
| 67 # live edited. This needs investigation. |
| 68 'debug-liveedit-double-call': [PASS, FAIL], |
| 69 |
66 ############################################################################## | 70 ############################################################################## |
67 # Too slow in debug mode with --stress-opt mode. | 71 # Too slow in debug mode with --stress-opt mode. |
68 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 72 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
69 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 73 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
70 | 74 |
71 ############################################################################## | 75 ############################################################################## |
72 # Too slow in debug mode for validation of elements. | 76 # Too slow in debug mode for validation of elements. |
73 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], | 77 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], |
74 'regress/regress-430201b': [PASS, ['mode == debug', SKIP]], | 78 'regress/regress-430201b': [PASS, ['mode == debug', SKIP]], |
75 | 79 |
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 ['variant == turbofan_opt', { | 610 ['variant == turbofan_opt', { |
607 | 611 |
608 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 612 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
609 'debug-evaluate-closure': [FAIL], | 613 'debug-evaluate-closure': [FAIL], |
610 'debug-evaluate-locals': [FAIL], | 614 'debug-evaluate-locals': [FAIL], |
611 'debug-set-variable-value': [FAIL], | 615 'debug-set-variable-value': [FAIL], |
612 'debug-evaluate-locals-optimized': [FAIL], | 616 'debug-evaluate-locals-optimized': [FAIL], |
613 'debug-evaluate-locals-optimized-double': [FAIL], | 617 'debug-evaluate-locals-optimized-double': [FAIL], |
614 'debug-liveedit-double-call': [FAIL], | 618 'debug-liveedit-double-call': [FAIL], |
615 'es6/debug-evaluate-blockscopes': [FAIL], | 619 'es6/debug-evaluate-blockscopes': [FAIL], |
| 620 'ignition/debug-break-on-stack': [FAIL], |
616 | 621 |
617 # TODO(jgruber): Fails in --turbo --always-opt mode. | 622 # TODO(jgruber): Fails in --turbo --always-opt mode. |
618 'regress/regress-105': [FAIL], | 623 'regress/regress-105': [FAIL], |
619 | 624 |
620 # Too slow. | 625 # Too slow. |
621 'big-object-literal': [SKIP], | 626 'big-object-literal': [SKIP], |
622 'ignition/regress-599001-verifyheap': [SKIP], | 627 'ignition/regress-599001-verifyheap': [SKIP], |
623 'unicode-test': [SKIP], | 628 'unicode-test': [SKIP], |
624 | 629 |
625 }], # variant == turbofan_opt | 630 }], # variant == turbofan_opt |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 'lithium/*': [SKIP], | 784 'lithium/*': [SKIP], |
780 'third_party/*': [SKIP], | 785 'third_party/*': [SKIP], |
781 'tools/*': [SKIP], | 786 'tools/*': [SKIP], |
782 'apply': [SKIP], | 787 'apply': [SKIP], |
783 'math-*': [SKIP], | 788 'math-*': [SKIP], |
784 'unicode-test': [SKIP], | 789 'unicode-test': [SKIP], |
785 'whitespaces': [SKIP], | 790 'whitespaces': [SKIP], |
786 }], # variant == asm_wasm | 791 }], # variant == asm_wasm |
787 | 792 |
788 ] | 793 ] |
OLD | NEW |