| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 # 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 'packed-elements': [PASS, NO_VARIANTS], | 78 'packed-elements': [PASS, NO_VARIANTS], |
| 78 'unbox-double-arrays': [PASS, NO_VARIANTS], | 79 'unbox-double-arrays': [PASS, NO_VARIANTS], |
| 79 'whitespaces': [PASS, NO_VARIANTS], | 80 'whitespaces': [PASS, NO_VARIANTS], |
| 80 'compiler/osr-assert': [PASS, NO_VARIANTS], | 81 'compiler/osr-assert': [PASS, NO_VARIANTS], |
| 81 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 82 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
| 82 | 83 |
| 83 # BUG(3681). Skipping in 64 bits debug is part of the bug report. | |
| 84 # Running no variants was the default. | |
| 85 'json2': [PASS, NO_VARIANTS, ['mode == debug and (arch == x64 or arch == arm64
or arch == android_arm64 or arch == mips64el)', SKIP]], | |
| 86 | |
| 87 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 84 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
| 88 # not work, but we expect it to not crash. | 85 # not work, but we expect it to not crash. |
| 89 'debug-step-turbofan': [PASS, FAIL], | 86 'debug-step-turbofan': [PASS, FAIL], |
| 90 | 87 |
| 91 # Support for %GetFrameDetails is missing and requires checkpoints. | 88 # Support for %GetFrameDetails is missing and requires checkpoints. |
| 92 'debug-evaluate-bool-constructor': [PASS, NO_VARIANTS], | 89 'debug-evaluate-bool-constructor': [PASS, NO_VARIANTS], |
| 93 'debug-evaluate-const': [PASS, NO_VARIANTS], | 90 'debug-evaluate-const': [PASS, NO_VARIANTS], |
| 94 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], | 91 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], |
| 95 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], | 92 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], |
| 96 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 93 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 'never-optimize': [SKIP], | 575 'never-optimize': [SKIP], |
| 579 'regress/regress-2185-2': [SKIP], | 576 'regress/regress-2185-2': [SKIP], |
| 580 'harmony/object-observe': [SKIP], | 577 'harmony/object-observe': [SKIP], |
| 581 'readonly': [SKIP], | 578 'readonly': [SKIP], |
| 582 'array-feedback': [SKIP], | 579 'array-feedback': [SKIP], |
| 583 | 580 |
| 584 # Deopt every n garbage collections collides with deopt every n times. | 581 # Deopt every n garbage collections collides with deopt every n times. |
| 585 'regress/regress-2653': [SKIP], | 582 'regress/regress-2653': [SKIP], |
| 586 }], # 'deopt_fuzzer == True' | 583 }], # 'deopt_fuzzer == True' |
| 587 ] | 584 ] |
| OLD | NEW |