| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 'array-constructor-feedback': [PASS, NO_VARIANTS], | 71 'array-constructor-feedback': [PASS, NO_VARIANTS], |
| 72 'array-feedback': [PASS, NO_VARIANTS], | 72 'array-feedback': [PASS, NO_VARIANTS], |
| 73 | 73 |
| 74 # Some tests are just too slow to run for now. | 74 # Some tests are just too slow to run for now. |
| 75 'big-object-literal': [PASS, NO_VARIANTS], | 75 'big-object-literal': [PASS, NO_VARIANTS], |
| 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/optimized-for-in': [PASS, NO_VARIANTS], | |
| 82 'compiler/osr-assert': [PASS, NO_VARIANTS], | 81 'compiler/osr-assert': [PASS, NO_VARIANTS], |
| 83 'compiler/osr-regress-max-locals': [PASS, NO_VARIANTS], | 82 'compiler/osr-regress-max-locals': [PASS, NO_VARIANTS], |
| 84 'es7/object-observe': [PASS, NO_VARIANTS], | 83 'es7/object-observe': [PASS, NO_VARIANTS], |
| 85 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 84 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
| 86 'regress/regress-284': [PASS, NO_VARIANTS], | |
| 87 'regress/string-set-char-deopt': [PASS, NO_VARIANTS], | |
| 88 'tools/profviz': [PASS, NO_VARIANTS], | |
| 89 | 85 |
| 90 # Support for breakpoints requires special relocation info for DebugBreak. | 86 # Support for breakpoints requires special relocation info for DebugBreak. |
| 91 'debug-clearbreakpointgroup': [PASS, NO_VARIANTS], | 87 'debug-clearbreakpointgroup': [PASS, NO_VARIANTS], |
| 92 'debug-step-2': [PASS, NO_VARIANTS], | 88 'debug-step-2': [PASS, NO_VARIANTS], |
| 93 'regress/regress-debug-deopt-while-recompile': [PASS, NO_VARIANTS], | 89 'regress/regress-debug-deopt-while-recompile': [PASS, NO_VARIANTS], |
| 94 'regress/regress-opt-after-debug-deopt': [PASS, NO_VARIANTS], | 90 'regress/regress-opt-after-debug-deopt': [PASS, NO_VARIANTS], |
| 95 | 91 |
| 96 # Code serializer does not work correctly. | 92 # Code serializer does not work correctly. |
| 97 'deserialize-reference': [PASS, NO_VARIANTS], | 93 'deserialize-reference': [PASS, NO_VARIANTS], |
| 98 | 94 |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 'never-optimize': [SKIP], | 593 'never-optimize': [SKIP], |
| 598 'regress/regress-2185-2': [SKIP], | 594 'regress/regress-2185-2': [SKIP], |
| 599 'harmony/object-observe': [SKIP], | 595 'harmony/object-observe': [SKIP], |
| 600 'readonly': [SKIP], | 596 'readonly': [SKIP], |
| 601 'array-feedback': [SKIP], | 597 'array-feedback': [SKIP], |
| 602 | 598 |
| 603 # Deopt every n garbage collections collides with deopt every n times. | 599 # Deopt every n garbage collections collides with deopt every n times. |
| 604 'regress/regress-2653': [SKIP], | 600 'regress/regress-2653': [SKIP], |
| 605 }], # 'deopt_fuzzer == True' | 601 }], # 'deopt_fuzzer == True' |
| 606 ] | 602 ] |
| OLD | NEW |