| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 'harmony/block-leave': [PASS, NO_VARIANTS], | 65 'harmony/block-leave': [PASS, NO_VARIANTS], |
| 66 'harmony/block-let-crankshaft': [PASS, NO_VARIANTS], | 66 'harmony/block-let-crankshaft': [PASS, NO_VARIANTS], |
| 67 'harmony/empty-for': [PASS, NO_VARIANTS], | 67 'harmony/empty-for': [PASS, NO_VARIANTS], |
| 68 | 68 |
| 69 # TODO(verwaest): Some tests are over-restrictive about object layout. | 69 # TODO(verwaest): Some tests are over-restrictive about object layout. |
| 70 'array-constructor-feedback': [PASS, NO_VARIANTS], | 70 'array-constructor-feedback': [PASS, NO_VARIANTS], |
| 71 'array-feedback': [PASS, NO_VARIANTS], | 71 'array-feedback': [PASS, NO_VARIANTS], |
| 72 'compare-known-objects-slow': [PASS, NO_VARIANTS], | 72 'compare-known-objects-slow': [PASS, NO_VARIANTS], |
| 73 'elements-kind': [PASS, NO_VARIANTS], | 73 'elements-kind': [PASS, NO_VARIANTS], |
| 74 | 74 |
| 75 # TODO(jarin) Traversal of large frame states is too slow. | |
| 76 'regress/regress-2612': [PASS, ['mode == debug', SKIP]], | |
| 77 | |
| 78 # Some tests are just too slow to run for now. | 75 # Some tests are just too slow to run for now. |
| 79 'bit-not': [PASS, NO_VARIANTS], | 76 'bit-not': [PASS, NO_VARIANTS], |
| 80 'json2': [PASS, NO_VARIANTS], | 77 'json2': [PASS, NO_VARIANTS], |
| 81 'packed-elements': [PASS, NO_VARIANTS], | 78 'packed-elements': [PASS, NO_VARIANTS], |
| 82 'unbox-double-arrays': [PASS, NO_VARIANTS], | 79 'unbox-double-arrays': [PASS, NO_VARIANTS], |
| 83 'whitespaces': [PASS, NO_VARIANTS], | 80 'whitespaces': [PASS, NO_VARIANTS], |
| 84 'compiler/osr-assert': [PASS, NO_VARIANTS], | 81 'compiler/osr-assert': [PASS, NO_VARIANTS], |
| 85 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 82 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
| 86 | 83 |
| 87 # Support for %GetFrameDetails is missing and requires checkpoints. | 84 # Support for %GetFrameDetails is missing and requires checkpoints. |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 'never-optimize': [SKIP], | 550 'never-optimize': [SKIP], |
| 554 'regress/regress-2185-2': [SKIP], | 551 'regress/regress-2185-2': [SKIP], |
| 555 'harmony/object-observe': [SKIP], | 552 'harmony/object-observe': [SKIP], |
| 556 'readonly': [SKIP], | 553 'readonly': [SKIP], |
| 557 'array-feedback': [SKIP], | 554 'array-feedback': [SKIP], |
| 558 | 555 |
| 559 # Deopt every n garbage collections collides with deopt every n times. | 556 # Deopt every n garbage collections collides with deopt every n times. |
| 560 'regress/regress-2653': [SKIP], | 557 'regress/regress-2653': [SKIP], |
| 561 }], # 'deopt_fuzzer == True' | 558 }], # 'deopt_fuzzer == True' |
| 562 ] | 559 ] |
| OLD | NEW |