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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 'big-object-literal': [PASS, NO_VARIANTS], | 74 'big-object-literal': [PASS, NO_VARIANTS], |
75 'bit-not': [PASS, NO_VARIANTS], | 75 'bit-not': [PASS, NO_VARIANTS], |
76 'json2': [PASS, NO_VARIANTS], | 76 'json2': [PASS, NO_VARIANTS], |
77 'packed-elements': [PASS, NO_VARIANTS], | 77 'packed-elements': [PASS, NO_VARIANTS], |
78 'string-indexof-1': [PASS, NO_VARIANTS], | 78 'string-indexof-1': [PASS, NO_VARIANTS], |
79 'unbox-double-arrays': [PASS, NO_VARIANTS], | 79 'unbox-double-arrays': [PASS, NO_VARIANTS], |
80 'unicode-test': [PASS, NO_VARIANTS], | 80 'unicode-test': [PASS, NO_VARIANTS], |
81 'whitespaces': [PASS, NO_VARIANTS], | 81 'whitespaces': [PASS, NO_VARIANTS], |
82 'compiler/osr-assert': [PASS, NO_VARIANTS], | 82 'compiler/osr-assert': [PASS, NO_VARIANTS], |
83 'es6/string-fromcodepoint': [PASS, NO_VARIANTS], | 83 'es6/string-fromcodepoint': [PASS, NO_VARIANTS], |
| 84 # TODO(cbruni): enable once we fix classConstructor calls in optimized code |
| 85 'es6/classes': [PASS, NO_VARIANTS], |
84 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 86 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
85 'regress/regress-2612': [PASS, NO_VARIANTS], | 87 'regress/regress-2612': [PASS, NO_VARIANTS], |
86 | 88 |
87 # Modules are busted | 89 # Modules are busted |
88 'harmony/module-linking': [SKIP], | 90 'harmony/module-linking': [SKIP], |
89 'harmony/module-recompile': [SKIP], | 91 'harmony/module-recompile': [SKIP], |
90 'harmony/module-resolution': [SKIP], | 92 'harmony/module-resolution': [SKIP], |
91 'harmony/regress/regress-343928': [SKIP], | 93 'harmony/regress/regress-343928': [SKIP], |
92 | 94 |
93 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 95 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 'd8-worker-sharedarraybuffer': [SKIP], | 724 'd8-worker-sharedarraybuffer': [SKIP], |
723 }], # 'predictable == True' | 725 }], # 'predictable == True' |
724 | 726 |
725 ############################################################################## | 727 ############################################################################## |
726 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 728 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
727 | 729 |
728 # take too long with the simulator. | 730 # take too long with the simulator. |
729 'regress/regress-1132': [SKIP], | 731 'regress/regress-1132': [SKIP], |
730 }], # 'arch == ppc and simulator_run == True' | 732 }], # 'arch == ppc and simulator_run == True' |
731 ] | 733 ] |
OLD | NEW |