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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 'debug-stepin-builtin': [PASS, NO_VARIANTS], | 120 'debug-stepin-builtin': [PASS, NO_VARIANTS], |
121 'debug-stepin-constructor': [PASS, NO_VARIANTS], | 121 'debug-stepin-constructor': [PASS, NO_VARIANTS], |
122 'debug-stepin-function-call': [PASS, NO_VARIANTS], | 122 'debug-stepin-function-call': [PASS, NO_VARIANTS], |
123 'debug-stepnext-do-while': [PASS, NO_VARIANTS], | 123 'debug-stepnext-do-while': [PASS, NO_VARIANTS], |
124 'debug-stepout-recursive-function': [PASS, NO_VARIANTS], | 124 'debug-stepout-recursive-function': [PASS, NO_VARIANTS], |
125 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], | 125 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], |
126 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], | 126 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], |
127 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], | 127 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], |
128 'debug-stepout-scope-part7': [PASS, NO_VARIANTS], | 128 'debug-stepout-scope-part7': [PASS, NO_VARIANTS], |
129 'debug-stepout-to-builtin': [PASS, NO_VARIANTS], | 129 'debug-stepout-to-builtin': [PASS, NO_VARIANTS], |
130 'es6/debug-promises-throw-in-constructor': [PASS, NO_VARIANTS], | 130 'es6/debug-promises/throw-in-constructor': [PASS, NO_VARIANTS], |
131 'es6/debug-promises-throw-in-reject': [PASS, NO_VARIANTS], | 131 'es6/debug-promises/reject-in-constructor': [PASS, NO_VARIANTS], |
132 'es6/debug-promises-uncaught-all': [PASS, NO_VARIANTS], | 132 'es6/debug-promises/throw-with-undefined-reject': [PASS, NO_VARIANTS], |
133 'es6/debug-promises-uncaught-uncaught': [PASS, NO_VARIANTS], | 133 'es6/debug-promises/throw-with-throw-in-reject': [PASS, NO_VARIANTS], |
| 134 'es6/debug-promises/reject-with-throw-in-reject': [PASS, NO_VARIANTS], |
| 135 'es6/debug-promises/throw-uncaught-all': [PASS, NO_VARIANTS], |
| 136 'es6/debug-promises/throw-uncaught-uncaught': [PASS, NO_VARIANTS], |
| 137 'es6/debug-promises/reject-uncaught-late': [PASS, NO_VARIANTS], |
134 'harmony/debug-blockscopes': [PASS, NO_VARIANTS], | 138 'harmony/debug-blockscopes': [PASS, NO_VARIANTS], |
135 'harmony/generators-debug-scopes': [PASS, NO_VARIANTS], | 139 'harmony/generators-debug-scopes': [PASS, NO_VARIANTS], |
136 'regress/regress-1081309': [PASS, NO_VARIANTS], | 140 'regress/regress-1081309': [PASS, NO_VARIANTS], |
137 'regress/regress-1170187': [PASS, NO_VARIANTS], | 141 'regress/regress-1170187': [PASS, NO_VARIANTS], |
138 'regress/regress-119609': [PASS, NO_VARIANTS], | 142 'regress/regress-119609': [PASS, NO_VARIANTS], |
139 'regress/regress-131994': [PASS, NO_VARIANTS], | 143 'regress/regress-131994': [PASS, NO_VARIANTS], |
140 'regress/regress-269': [PASS, NO_VARIANTS], | 144 'regress/regress-269': [PASS, NO_VARIANTS], |
141 'regress/regress-325676': [PASS, NO_VARIANTS], | 145 'regress/regress-325676': [PASS, NO_VARIANTS], |
142 'regress/regress-crbug-107996': [PASS, NO_VARIANTS], | 146 'regress/regress-crbug-107996': [PASS, NO_VARIANTS], |
143 'regress/regress-crbug-171715': [PASS, NO_VARIANTS], | 147 'regress/regress-crbug-171715': [PASS, NO_VARIANTS], |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 'never-optimize': [SKIP], | 594 'never-optimize': [SKIP], |
591 'regress/regress-2185-2': [SKIP], | 595 'regress/regress-2185-2': [SKIP], |
592 'harmony/object-observe': [SKIP], | 596 'harmony/object-observe': [SKIP], |
593 'readonly': [SKIP], | 597 'readonly': [SKIP], |
594 'array-feedback': [SKIP], | 598 'array-feedback': [SKIP], |
595 | 599 |
596 # Deopt every n garbage collections collides with deopt every n times. | 600 # Deopt every n garbage collections collides with deopt every n times. |
597 'regress/regress-2653': [SKIP], | 601 'regress/regress-2653': [SKIP], |
598 }], # 'deopt_fuzzer == True' | 602 }], # 'deopt_fuzzer == True' |
599 ] | 603 ] |
OLD | NEW |