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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 # Some tests are just too slow to run for now. | 69 # Some tests are just too slow to run for now. |
70 'big-object-literal': [PASS, NO_VARIANTS], | 70 'big-object-literal': [PASS, NO_VARIANTS], |
71 'bit-not': [PASS, NO_VARIANTS], | 71 'bit-not': [PASS, NO_VARIANTS], |
72 'json2': [PASS, NO_VARIANTS], | 72 'json2': [PASS, NO_VARIANTS], |
73 'packed-elements': [PASS, NO_VARIANTS], | 73 'packed-elements': [PASS, NO_VARIANTS], |
74 'string-indexof-1': [PASS, NO_VARIANTS], | 74 'string-indexof-1': [PASS, NO_VARIANTS], |
75 'unbox-double-arrays': [PASS, NO_VARIANTS], | 75 'unbox-double-arrays': [PASS, NO_VARIANTS], |
76 'unicode-test': [PASS, NO_VARIANTS], | 76 'unicode-test': [PASS, NO_VARIANTS], |
77 'whitespaces': [PASS, NO_VARIANTS], | 77 'whitespaces': [PASS, NO_VARIANTS], |
78 'compiler/osr-assert': [PASS, NO_VARIANTS], | 78 'compiler/osr-assert': [PASS, NO_VARIANTS], |
| 79 'ignition/regress-599001-verifyheap': [PASS, NO_VARIANTS], |
79 'es6/string-fromcodepoint': [PASS, NO_VARIANTS], | 80 'es6/string-fromcodepoint': [PASS, NO_VARIANTS], |
80 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 81 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
81 'regress/regress-2612': [PASS, NO_VARIANTS], | 82 'regress/regress-2612': [PASS, NO_VARIANTS], |
82 | 83 |
83 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 84 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
84 # not work, but we expect it to not crash. | 85 # not work, but we expect it to not crash. |
85 'debug-step-turbofan': [PASS, FAIL], | 86 'debug-step-turbofan': [PASS, FAIL], |
86 | 87 |
87 # TODO(mstarzinger): Optimizing top-level code revealed some issues. Fix! | 88 # TODO(mstarzinger): Optimizing top-level code revealed some issues. Fix! |
88 'bitops-info': [PASS, NO_VARIANTS], # fails on ARM hardware. | 89 'bitops-info': [PASS, NO_VARIANTS], # fails on ARM hardware. |
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
932 ############################################################################## | 933 ############################################################################## |
933 ['gcov_coverage', { | 934 ['gcov_coverage', { |
934 # Tests taking too long. | 935 # Tests taking too long. |
935 'array-functions-prototype-misc': [SKIP], | 936 'array-functions-prototype-misc': [SKIP], |
936 | 937 |
937 # Stack overflow. | 938 # Stack overflow. |
938 'big-array-literal': [SKIP], | 939 'big-array-literal': [SKIP], |
939 }], # 'gcov_coverage' | 940 }], # 'gcov_coverage' |
940 | 941 |
941 ] | 942 ] |
OLD | NEW |