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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 'unbox-double-arrays': [PASS, NO_VARIANTS], | 77 'unbox-double-arrays': [PASS, NO_VARIANTS], |
78 'whitespaces': [PASS, NO_VARIANTS], | 78 'whitespaces': [PASS, NO_VARIANTS], |
79 'compiler/osr-assert': [PASS, NO_VARIANTS], | 79 'compiler/osr-assert': [PASS, NO_VARIANTS], |
80 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 80 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
81 'regress/regress-2612': [PASS, NO_VARIANTS], | 81 'regress/regress-2612': [PASS, NO_VARIANTS], |
82 | 82 |
83 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 83 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
84 # not work, but we expect it to not crash. | 84 # not work, but we expect it to not crash. |
85 'debug-step-turbofan': [PASS, FAIL], | 85 'debug-step-turbofan': [PASS, FAIL], |
86 | 86 |
87 # TODO(mstarzinger): Investigate failures with computed property names. | |
88 # Note that this happens in GC-stress mode only. | |
89 'harmony/computed-property-names': [PASS, NO_VARIANTS], | |
90 'harmony/computed-property-names-object-literals-methods': [PASS, NO_VARIANTS]
, | |
91 | |
92 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 87 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
93 'debug-evaluate-const': [PASS, NO_VARIANTS], | 88 'debug-evaluate-const': [PASS, NO_VARIANTS], |
94 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 89 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
95 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. | 90 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. |
96 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 91 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
97 'debug-step-stub-callfunction': [PASS, NO_VARIANTS], | 92 'debug-step-stub-callfunction': [PASS, NO_VARIANTS], |
98 'debug-set-variable-value': [PASS, NO_VARIANTS], | 93 'debug-set-variable-value': [PASS, NO_VARIANTS], |
99 'debug-stepin-accessor': [PASS, NO_VARIANTS], | 94 'debug-stepin-accessor': [PASS, NO_VARIANTS], |
100 'debug-stepin-builtin': [PASS, NO_VARIANTS], | 95 'debug-stepin-builtin': [PASS, NO_VARIANTS], |
101 'debug-stepin-constructor': [PASS, NO_VARIANTS], | 96 'debug-stepin-constructor': [PASS, NO_VARIANTS], |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 'never-optimize': [SKIP], | 575 'never-optimize': [SKIP], |
581 'regress/regress-2185-2': [SKIP], | 576 'regress/regress-2185-2': [SKIP], |
582 'harmony/object-observe': [SKIP], | 577 'harmony/object-observe': [SKIP], |
583 'readonly': [SKIP], | 578 'readonly': [SKIP], |
584 'array-feedback': [SKIP], | 579 'array-feedback': [SKIP], |
585 | 580 |
586 # Deopt every n garbage collections collides with deopt every n times. | 581 # Deopt every n garbage collections collides with deopt every n times. |
587 'regress/regress-2653': [SKIP], | 582 'regress/regress-2653': [SKIP], |
588 }], # 'deopt_fuzzer == True' | 583 }], # 'deopt_fuzzer == True' |
589 ] | 584 ] |
OLD | NEW |