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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 | 89 |
90 # Support for breakpoints requires special relocation info for DebugBreak. | 90 # Support for breakpoints requires special relocation info for DebugBreak. |
91 'debug-clearbreakpointgroup': [PASS, NO_VARIANTS], | 91 'debug-clearbreakpointgroup': [PASS, NO_VARIANTS], |
92 'debug-step-2': [PASS, NO_VARIANTS], | 92 'debug-step-2': [PASS, NO_VARIANTS], |
93 'regress/regress-debug-deopt-while-recompile': [PASS, NO_VARIANTS], | 93 'regress/regress-debug-deopt-while-recompile': [PASS, NO_VARIANTS], |
94 'regress/regress-opt-after-debug-deopt': [PASS, NO_VARIANTS], | 94 'regress/regress-opt-after-debug-deopt': [PASS, NO_VARIANTS], |
95 | 95 |
96 # Support for %GetFrameDetails is missing and requires checkpoints. | 96 # Support for %GetFrameDetails is missing and requires checkpoints. |
97 'debug-backtrace-text': [PASS, NO_VARIANTS], | 97 'debug-backtrace-text': [PASS, NO_VARIANTS], |
98 'debug-break-inline': [PASS, NO_VARIANTS], | 98 'debug-break-inline': [PASS, NO_VARIANTS], |
99 'debug-evaluate-arguments': [PASS, NO_VARIANTS], | |
100 'debug-evaluate-bool-constructor': [PASS, NO_VARIANTS], | 99 'debug-evaluate-bool-constructor': [PASS, NO_VARIANTS], |
101 'debug-evaluate-closure': [PASS, NO_VARIANTS], | 100 'debug-evaluate-closure': [PASS, NO_VARIANTS], |
102 'debug-evaluate-const': [PASS, NO_VARIANTS], | 101 'debug-evaluate-const': [PASS, NO_VARIANTS], |
103 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], | 102 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], |
104 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], | 103 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], |
105 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 104 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
106 'debug-evaluate-with-context': [PASS, NO_VARIANTS], | 105 'debug-evaluate-with-context': [PASS, NO_VARIANTS], |
107 'debug-evaluate-with': [PASS, NO_VARIANTS], | 106 'debug-evaluate-with': [PASS, NO_VARIANTS], |
108 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 107 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
109 'debug-liveedit-restart-frame': [PASS, NO_VARIANTS], | 108 'debug-liveedit-restart-frame': [PASS, NO_VARIANTS], |
110 'debug-receiver': [PASS, NO_VARIANTS], | |
111 'debug-return-value': [PASS, NO_VARIANTS], | 109 'debug-return-value': [PASS, NO_VARIANTS], |
112 'debug-scopes': [PASS, NO_VARIANTS], | 110 'debug-scopes': [PASS, NO_VARIANTS], |
113 'debug-set-variable-value': [PASS, NO_VARIANTS], | 111 'debug-set-variable-value': [PASS, NO_VARIANTS], |
114 'debug-step-stub-callfunction': [PASS, NO_VARIANTS], | 112 'debug-step-stub-callfunction': [PASS, NO_VARIANTS], |
115 'debug-stepin-accessor': [PASS, NO_VARIANTS], | 113 'debug-stepin-accessor': [PASS, NO_VARIANTS], |
116 'debug-stepin-builtin': [PASS, NO_VARIANTS], | 114 'debug-stepin-builtin': [PASS, NO_VARIANTS], |
117 'debug-stepin-constructor': [PASS, NO_VARIANTS], | 115 'debug-stepin-constructor': [PASS, NO_VARIANTS], |
118 'debug-stepin-function-call': [PASS, NO_VARIANTS], | 116 'debug-stepin-function-call': [PASS, NO_VARIANTS], |
119 'debug-stepnext-do-while': [PASS, NO_VARIANTS], | 117 'debug-stepnext-do-while': [PASS, NO_VARIANTS], |
120 'debug-stepout-recursive-function': [PASS, NO_VARIANTS], | 118 'debug-stepout-recursive-function': [PASS, NO_VARIANTS], |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 'never-optimize': [SKIP], | 596 'never-optimize': [SKIP], |
599 'regress/regress-2185-2': [SKIP], | 597 'regress/regress-2185-2': [SKIP], |
600 'harmony/object-observe': [SKIP], | 598 'harmony/object-observe': [SKIP], |
601 'readonly': [SKIP], | 599 'readonly': [SKIP], |
602 'array-feedback': [SKIP], | 600 'array-feedback': [SKIP], |
603 | 601 |
604 # Deopt every n garbage collections collides with deopt every n times. | 602 # Deopt every n garbage collections collides with deopt every n times. |
605 'regress/regress-2653': [SKIP], | 603 'regress/regress-2653': [SKIP], |
606 }], # 'deopt_fuzzer == True' | 604 }], # 'deopt_fuzzer == True' |
607 ] | 605 ] |
OLD | NEW |