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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
102 'debug-stepin-constructor': [PASS, NO_VARIANTS], | 102 'debug-stepin-constructor': [PASS, NO_VARIANTS], |
103 'debug-stepin-function-call': [PASS, NO_VARIANTS], | 103 'debug-stepin-function-call': [PASS, NO_VARIANTS], |
104 'debug-stepnext-do-while': [PASS, NO_VARIANTS], | 104 'debug-stepnext-do-while': [PASS, NO_VARIANTS], |
105 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], | 105 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], |
106 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], | 106 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], |
107 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], | 107 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], |
108 'es6/debug-stepin-microtasks': [PASS, NO_VARIANTS], | 108 'es6/debug-stepin-microtasks': [PASS, NO_VARIANTS], |
109 'es6/debug-stepnext-for': [PASS, NO_VARIANTS], | 109 'es6/debug-stepnext-for': [PASS, NO_VARIANTS], |
110 'harmony/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], | 110 'harmony/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], |
111 | 111 |
112 # Issue 3869: --turbo-deoptimnization issues (jarin, dslomov). | |
arv (Not doing code reviews)
2015/02/05 20:49:46
typo
| |
113 'harmony/classes-experimental': [PASS, NO_VARIANTS], | |
114 | |
112 # TODO(jarin): Some tests don't like --turbo-deoptimzation very much. | 115 # TODO(jarin): Some tests don't like --turbo-deoptimzation very much. |
113 'asm/embenchen/lua_binarytrees': [SKIP], | 116 'asm/embenchen/lua_binarytrees': [SKIP], |
114 'es6/symbols': [PASS, NO_VARIANTS], | 117 'es6/symbols': [PASS, NO_VARIANTS], |
115 'regress/regress-354433': [PASS, NO_VARIANTS], # only on ARM simulator. | 118 'regress/regress-354433': [PASS, NO_VARIANTS], # only on ARM simulator. |
116 'regress/regress-crbug-259300': [PASS, NO_VARIANTS], | 119 'regress/regress-crbug-259300': [PASS, NO_VARIANTS], |
117 | 120 |
118 # TODO(arv): TurboFan does not yet add [[HomeObject]] as needed. | 121 # TODO(arv): TurboFan does not yet add [[HomeObject]] as needed. |
119 'harmony/object-literals-super': [PASS, NO_VARIANTS], | 122 'harmony/object-literals-super': [PASS, NO_VARIANTS], |
120 | 123 |
121 ############################################################################## | 124 ############################################################################## |
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
579 'never-optimize': [SKIP], | 582 'never-optimize': [SKIP], |
580 'regress/regress-2185-2': [SKIP], | 583 'regress/regress-2185-2': [SKIP], |
581 'harmony/object-observe': [SKIP], | 584 'harmony/object-observe': [SKIP], |
582 'readonly': [SKIP], | 585 'readonly': [SKIP], |
583 'array-feedback': [SKIP], | 586 'array-feedback': [SKIP], |
584 | 587 |
585 # Deopt every n garbage collections collides with deopt every n times. | 588 # Deopt every n garbage collections collides with deopt every n times. |
586 'regress/regress-2653': [SKIP], | 589 'regress/regress-2653': [SKIP], |
587 }], # 'deopt_fuzzer == True' | 590 }], # 'deopt_fuzzer == True' |
588 ] | 591 ] |
OLD | NEW |