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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 | 74 |
75 # Some tests are just too slow to run for now. | 75 # Some tests are just too slow to run for now. |
76 'bit-not': [PASS, NO_VARIANTS], | 76 'bit-not': [PASS, NO_VARIANTS], |
77 'json2': [PASS, NO_VARIANTS], | 77 'json2': [PASS, NO_VARIANTS], |
78 'packed-elements': [PASS, NO_VARIANTS], | 78 'packed-elements': [PASS, NO_VARIANTS], |
79 'unbox-double-arrays': [PASS, NO_VARIANTS], | 79 'unbox-double-arrays': [PASS, NO_VARIANTS], |
80 'whitespaces': [PASS, NO_VARIANTS], | 80 'whitespaces': [PASS, NO_VARIANTS], |
81 'compiler/osr-assert': [PASS, NO_VARIANTS], | 81 'compiler/osr-assert': [PASS, NO_VARIANTS], |
82 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 82 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
83 | 83 |
| 84 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
| 85 # not work, but we expect it to not crash. |
| 86 'debug-step-turbofan': [PASS, FAIL], |
| 87 |
84 # Support for %GetFrameDetails is missing and requires checkpoints. | 88 # Support for %GetFrameDetails is missing and requires checkpoints. |
85 'debug-evaluate-bool-constructor': [PASS, NO_VARIANTS], | 89 'debug-evaluate-bool-constructor': [PASS, NO_VARIANTS], |
86 'debug-evaluate-const': [PASS, NO_VARIANTS], | 90 'debug-evaluate-const': [PASS, NO_VARIANTS], |
87 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], | 91 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], |
88 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], | 92 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], |
89 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 93 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
90 'debug-evaluate-with-context': [PASS, NO_VARIANTS], | 94 'debug-evaluate-with-context': [PASS, NO_VARIANTS], |
91 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 95 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
92 'debug-liveedit-restart-frame': [PASS, NO_VARIANTS], | 96 'debug-liveedit-restart-frame': [PASS, NO_VARIANTS], |
93 'debug-return-value': [PASS, NO_VARIANTS], | 97 'debug-return-value': [PASS, NO_VARIANTS], |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
554 'never-optimize': [SKIP], | 558 'never-optimize': [SKIP], |
555 'regress/regress-2185-2': [SKIP], | 559 'regress/regress-2185-2': [SKIP], |
556 'harmony/object-observe': [SKIP], | 560 'harmony/object-observe': [SKIP], |
557 'readonly': [SKIP], | 561 'readonly': [SKIP], |
558 'array-feedback': [SKIP], | 562 'array-feedback': [SKIP], |
559 | 563 |
560 # Deopt every n garbage collections collides with deopt every n times. | 564 # Deopt every n garbage collections collides with deopt every n times. |
561 'regress/regress-2653': [SKIP], | 565 'regress/regress-2653': [SKIP], |
562 }], # 'deopt_fuzzer == True' | 566 }], # 'deopt_fuzzer == True' |
563 ] | 567 ] |
OLD | NEW |