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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 fuzz-natives: PASS, SKIP if ($mode == release || $arch == arm || $arch == mips) | 52 fuzz-natives: PASS, SKIP if ($mode == release || $arch == arm || $arch == mips) |
53 | 53 |
54 big-object-literal: PASS, SKIP if ($arch == arm) | 54 big-object-literal: PASS, SKIP if ($arch == arm) |
55 | 55 |
56 # Issue 488: this test sometimes times out. | 56 # Issue 488: this test sometimes times out. |
57 array-constructor: PASS || TIMEOUT | 57 array-constructor: PASS || TIMEOUT |
58 | 58 |
59 # Very slow on ARM and MIPS, contains no architecture dependent code. | 59 # Very slow on ARM and MIPS, contains no architecture dependent code. |
60 unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == mips) | 60 unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == mips) |
61 | 61 |
62 # Stack manipulations in LiveEdit are buggy - see bug 915 | |
63 debug-liveedit-check-stack: SKIP | |
64 debug-liveedit-patch-positions-replace: SKIP | |
65 debug-liveedit-stack-padding: SKIP | |
66 debug-liveedit-restart-frame: SKIP | |
67 | |
68 # Test Crankshaft compilation time. Expected to take too long in debug mode. | 62 # Test Crankshaft compilation time. Expected to take too long in debug mode. |
69 regress/regress-1969: PASS, SKIP if $mode == debug | 63 regress/regress-1969: PASS, SKIP if $mode == debug |
70 | 64 |
71 ############################################################################## | 65 ############################################################################## |
72 [ $isolates ] | 66 [ $isolates ] |
73 | 67 |
74 # This test sets the umask on a per-process basis and hence cannot be | 68 # This test sets the umask on a per-process basis and hence cannot be |
75 # used in multi-threaded runs. | 69 # used in multi-threaded runs. |
76 d8-os: SKIP | 70 d8-os: SKIP |
77 | 71 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 regress/regress-634: SKIP | 114 regress/regress-634: SKIP |
121 regress/regress-create-exception: SKIP | 115 regress/regress-create-exception: SKIP |
122 regress/regress-3218915: SKIP | 116 regress/regress-3218915: SKIP |
123 regress/regress-3247124: SKIP | 117 regress/regress-3247124: SKIP |
124 | 118 |
125 # Requires bigger stack size in the Genesis and if stack size is increased, | 119 # Requires bigger stack size in the Genesis and if stack size is increased, |
126 # the test requires too much time to run. However, the problem test covers | 120 # the test requires too much time to run. However, the problem test covers |
127 # should be platform-independent. | 121 # should be platform-independent. |
128 regress/regress-1132: SKIP | 122 regress/regress-1132: SKIP |
129 | 123 |
| 124 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 125 debug-liveedit-check-stack: SKIP |
| 126 debug-liveedit-stack-padding: SKIP |
| 127 debug-liveedit-restart-frame: SKIP |
| 128 |
130 ############################################################################## | 129 ############################################################################## |
131 [ $arch == mips ] | 130 [ $arch == mips ] |
132 | 131 |
133 # Slow tests which times out in debug mode. | 132 # Slow tests which times out in debug mode. |
134 try: PASS, SKIP if $mode == debug | 133 try: PASS, SKIP if $mode == debug |
135 debug-scripts-request: PASS, SKIP if $mode == debug | 134 debug-scripts-request: PASS, SKIP if $mode == debug |
136 array-constructor: PASS, SKIP if $mode == debug | 135 array-constructor: PASS, SKIP if $mode == debug |
137 | 136 |
138 # Times out often in release mode on MIPS. | 137 # Times out often in release mode on MIPS. |
139 compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release | 138 compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release |
(...skipping 28 matching lines...) Expand all Loading... |
168 regress/regress-490: SKIP | 167 regress/regress-490: SKIP |
169 regress/regress-634: SKIP | 168 regress/regress-634: SKIP |
170 regress/regress-create-exception: SKIP | 169 regress/regress-create-exception: SKIP |
171 regress/regress-3218915: SKIP | 170 regress/regress-3218915: SKIP |
172 regress/regress-3247124: SKIP | 171 regress/regress-3247124: SKIP |
173 | 172 |
174 # Requires bigger stack size in the Genesis and if stack size is increased, | 173 # Requires bigger stack size in the Genesis and if stack size is increased, |
175 # the test requires too much time to run. However, the problem test covers | 174 # the test requires too much time to run. However, the problem test covers |
176 # should be platform-independent. | 175 # should be platform-independent. |
177 regress/regress-1132: SKIP | 176 regress/regress-1132: SKIP |
| 177 |
| 178 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 179 debug-liveedit-check-stack: SKIP |
| 180 debug-liveedit-stack-padding: SKIP |
| 181 debug-liveedit-restart-frame: SKIP |
| 182 |
OLD | NEW |