| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], | 113 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], |
| 114 'harmony/debug-blockscopes': [PASS, NO_VARIANTS], | 114 'harmony/debug-blockscopes': [PASS, NO_VARIANTS], |
| 115 'regress/regress-1081309': [PASS, NO_VARIANTS], | 115 'regress/regress-1081309': [PASS, NO_VARIANTS], |
| 116 'regress/regress-269': [PASS, NO_VARIANTS], | 116 'regress/regress-269': [PASS, NO_VARIANTS], |
| 117 'regress/regress-crbug-259300': [PASS, NO_VARIANTS], | 117 'regress/regress-crbug-259300': [PASS, NO_VARIANTS], |
| 118 'regress/regress-frame-details-null-receiver': [PASS, NO_VARIANTS], | 118 'regress/regress-frame-details-null-receiver': [PASS, NO_VARIANTS], |
| 119 | 119 |
| 120 # TODO(arv): TurboFan does not yet add [[HomeObject]] as needed. | 120 # TODO(arv): TurboFan does not yet add [[HomeObject]] as needed. |
| 121 'harmony/object-literals-super': [PASS, NO_VARIANTS], | 121 'harmony/object-literals-super': [PASS, NO_VARIANTS], |
| 122 | 122 |
| 123 # TODO(arv): TurboFan does not yet implement computed property names. |
| 124 'harmony/computed-property-names': [PASS, NO_VARIANTS], |
| 125 |
| 123 ############################################################################## | 126 ############################################################################## |
| 124 # Too slow in debug mode with --stress-opt mode. | 127 # Too slow in debug mode with --stress-opt mode. |
| 125 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 128 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
| 126 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 129 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
| 127 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 130 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
| 128 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 131 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
| 129 | 132 |
| 130 ############################################################################## | 133 ############################################################################## |
| 131 # Too slow in debug mode for GC stress mode. | 134 # Too slow in debug mode for GC stress mode. |
| 132 'regress/regress-crbug-217858': [PASS, ['mode == debug', SKIP]], | 135 'regress/regress-crbug-217858': [PASS, ['mode == debug', SKIP]], |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 'never-optimize': [SKIP], | 579 'never-optimize': [SKIP], |
| 577 'regress/regress-2185-2': [SKIP], | 580 'regress/regress-2185-2': [SKIP], |
| 578 'harmony/object-observe': [SKIP], | 581 'harmony/object-observe': [SKIP], |
| 579 'readonly': [SKIP], | 582 'readonly': [SKIP], |
| 580 'array-feedback': [SKIP], | 583 'array-feedback': [SKIP], |
| 581 | 584 |
| 582 # Deopt every n garbage collections collides with deopt every n times. | 585 # Deopt every n garbage collections collides with deopt every n times. |
| 583 'regress/regress-2653': [SKIP], | 586 'regress/regress-2653': [SKIP], |
| 584 }], # 'deopt_fuzzer == True' | 587 }], # 'deopt_fuzzer == True' |
| 585 ] | 588 ] |
| OLD | NEW |