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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 ############################################################################## | 58 ############################################################################## |
59 # TurboFan compiler failures. | 59 # TurboFan compiler failures. |
60 | 60 |
61 # TODO(verwaest): Some tests are over-restrictive about object layout. | 61 # TODO(verwaest): Some tests are over-restrictive about object layout. |
62 'compare-known-objects-slow': [PASS, NO_VARIANTS], | 62 'compare-known-objects-slow': [PASS, NO_VARIANTS], |
63 'smi-representation': [PASS, NO_VARIANTS], | 63 'smi-representation': [PASS, NO_VARIANTS], |
64 | 64 |
65 # Some tests are just too slow to run for now. | 65 # Some tests are just too slow to run for now. |
66 'big-object-literal': [PASS, NO_VARIANTS], | 66 'big-object-literal': [PASS, NO_VARIANTS], |
67 'bit-not': [PASS, NO_VARIANTS], | |
68 'json2': [PASS, NO_VARIANTS], | 67 'json2': [PASS, NO_VARIANTS], |
69 'packed-elements': [PASS, NO_VARIANTS], | 68 'packed-elements': [PASS, NO_VARIANTS], |
70 'string-indexof-1': [PASS, NO_VARIANTS], | |
71 'unbox-double-arrays': [PASS, NO_VARIANTS], | |
72 'unicode-test': [PASS, NO_VARIANTS], | 69 'unicode-test': [PASS, NO_VARIANTS], |
73 'whitespaces': [PASS, NO_VARIANTS], | 70 'whitespaces': [PASS, NO_VARIANTS], |
74 'compiler/osr-assert': [PASS, NO_VARIANTS], | |
75 'ignition/regress-599001-verifyheap': [PASS, NO_VARIANTS], | 71 'ignition/regress-599001-verifyheap': [PASS, NO_VARIANTS], |
76 'es6/string-fromcodepoint': [PASS, NO_VARIANTS], | 72 'es6/string-fromcodepoint': [PASS, NO_VARIANTS], |
77 'regress/regress-2185-2': [PASS, NO_VARIANTS], | |
78 'regress/regress-2612': [PASS, NO_VARIANTS], | 73 'regress/regress-2612': [PASS, NO_VARIANTS], |
79 | 74 |
80 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 75 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
81 # not work, but we expect it to not crash. | 76 # not work, but we expect it to not crash. |
82 'debug-step-turbofan': [PASS, FAIL], | 77 'debug-step-turbofan': [PASS, FAIL], |
83 | 78 |
84 # TODO(mstarzinger): Optimizing top-level code revealed some issues. Fix! | 79 # TODO(mstarzinger): Optimizing top-level code revealed some issues. Fix! |
85 'bitops-info': [PASS, NO_VARIANTS], # fails on ARM hardware. | 80 'bitops-info': [PASS, NO_VARIANTS], # fails on ARM hardware. |
86 'md5': [PASS, NO_VARIANTS], # fails on ARM hardware. | 81 'md5': [PASS, NO_VARIANTS], # fails on ARM hardware. |
87 'debug-break-inline': [PASS, NO_VARIANTS], # very flaky. | 82 'debug-break-inline': [PASS, NO_VARIANTS], # very flaky. |
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 ############################################################################## | 871 ############################################################################## |
877 ['gcov_coverage', { | 872 ['gcov_coverage', { |
878 # Tests taking too long. | 873 # Tests taking too long. |
879 'array-functions-prototype-misc': [SKIP], | 874 'array-functions-prototype-misc': [SKIP], |
880 | 875 |
881 # Stack overflow. | 876 # Stack overflow. |
882 'big-array-literal': [SKIP], | 877 'big-array-literal': [SKIP], |
883 }], # 'gcov_coverage' | 878 }], # 'gcov_coverage' |
884 | 879 |
885 ] | 880 ] |
OLD | NEW |