| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 'big-object-literal': [PASS, NO_VARIANTS], | 73 'big-object-literal': [PASS, NO_VARIANTS], |
| 74 'bit-not': [PASS, NO_VARIANTS], | 74 'bit-not': [PASS, NO_VARIANTS], |
| 75 'json2': [PASS, NO_VARIANTS], | 75 'json2': [PASS, NO_VARIANTS], |
| 76 'packed-elements': [PASS, NO_VARIANTS], | 76 'packed-elements': [PASS, NO_VARIANTS], |
| 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 # Modules are busted |
| 84 'harmony/module-linking': [SKIP], |
| 85 'harmony/module-recompile': [SKIP], |
| 86 'harmony/module-resolution': [SKIP], |
| 87 'harmony/regress/regress-343928': [SKIP], |
| 88 |
| 83 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 89 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
| 84 # not work, but we expect it to not crash. | 90 # not work, but we expect it to not crash. |
| 85 'debug-step-turbofan': [PASS, FAIL], | 91 'debug-step-turbofan': [PASS, FAIL], |
| 86 | 92 |
| 87 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 93 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
| 88 'debug-evaluate-const': [PASS, NO_VARIANTS], | 94 'debug-evaluate-const': [PASS, NO_VARIANTS], |
| 89 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 95 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
| 90 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. | 96 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. |
| 91 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 97 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
| 92 'debug-step-stub-callfunction': [PASS, NO_VARIANTS], | 98 'debug-step-stub-callfunction': [PASS, NO_VARIANTS], |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 'never-optimize': [SKIP], | 576 'never-optimize': [SKIP], |
| 571 'regress/regress-2185-2': [SKIP], | 577 'regress/regress-2185-2': [SKIP], |
| 572 'harmony/object-observe': [SKIP], | 578 'harmony/object-observe': [SKIP], |
| 573 'readonly': [SKIP], | 579 'readonly': [SKIP], |
| 574 'array-feedback': [SKIP], | 580 'array-feedback': [SKIP], |
| 575 | 581 |
| 576 # Deopt every n garbage collections collides with deopt every n times. | 582 # Deopt every n garbage collections collides with deopt every n times. |
| 577 'regress/regress-2653': [SKIP], | 583 'regress/regress-2653': [SKIP], |
| 578 }], # 'deopt_fuzzer == True' | 584 }], # 'deopt_fuzzer == True' |
| 579 ] | 585 ] |
| OLD | NEW |