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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 'whitespaces': [PASS, NO_VARIANTS], | 76 'whitespaces': [PASS, NO_VARIANTS], |
77 'compiler/osr-assert': [PASS, NO_VARIANTS], | 77 'compiler/osr-assert': [PASS, NO_VARIANTS], |
78 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 78 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
79 'regress/regress-2612': [PASS, NO_VARIANTS], | 79 'regress/regress-2612': [PASS, NO_VARIANTS], |
80 | 80 |
81 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 81 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
82 # not work, but we expect it to not crash. | 82 # not work, but we expect it to not crash. |
83 'debug-step-turbofan': [PASS, FAIL], | 83 'debug-step-turbofan': [PASS, FAIL], |
84 | 84 |
85 # TODO(jarin): Some tests don't like --turbo-deoptimzation very much. | 85 # TODO(jarin): Some tests don't like --turbo-deoptimzation very much. |
| 86 'asm/embenchen/lua_binarytrees': [SKIP], |
86 'es6/symbols': [PASS, NO_VARIANTS], | 87 'es6/symbols': [PASS, NO_VARIANTS], |
| 88 'es7/object-observe-debug-event': [PASS, NO_VARIANTS], |
| 89 'harmony/classes': [PASS, NO_VARIANTS], |
87 'regress/regress-354433': [PASS, NO_VARIANTS], # only on ARM simulator. | 90 'regress/regress-354433': [PASS, NO_VARIANTS], # only on ARM simulator. |
| 91 'regress/regress-crbug-259300': [PASS, NO_VARIANTS], |
88 | 92 |
89 # TODO(arv): TurboFan does not yet add [[HomeObject]] as needed. | 93 # TODO(arv): TurboFan does not yet add [[HomeObject]] as needed. |
90 'harmony/object-literals-super': [PASS, NO_VARIANTS], | 94 'harmony/object-literals-super': [PASS, NO_VARIANTS], |
91 | 95 |
92 ############################################################################## | 96 ############################################################################## |
93 # Too slow in debug mode with --stress-opt mode. | 97 # Too slow in debug mode with --stress-opt mode. |
94 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 98 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
95 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 99 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
96 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 100 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
97 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 101 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 'never-optimize': [SKIP], | 551 'never-optimize': [SKIP], |
548 'regress/regress-2185-2': [SKIP], | 552 'regress/regress-2185-2': [SKIP], |
549 'harmony/object-observe': [SKIP], | 553 'harmony/object-observe': [SKIP], |
550 'readonly': [SKIP], | 554 'readonly': [SKIP], |
551 'array-feedback': [SKIP], | 555 'array-feedback': [SKIP], |
552 | 556 |
553 # Deopt every n garbage collections collides with deopt every n times. | 557 # Deopt every n garbage collections collides with deopt every n times. |
554 'regress/regress-2653': [SKIP], | 558 'regress/regress-2653': [SKIP], |
555 }], # 'deopt_fuzzer == True' | 559 }], # 'deopt_fuzzer == True' |
556 ] | 560 ] |
OLD | NEW |