| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 # Very slow on ARM and MIPS, contains no architecture dependent code. | 60 # Very slow on ARM and MIPS, contains no architecture dependent code. |
| 61 unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == androi
d_arm || $arch == mipsel) | 61 unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == androi
d_arm || $arch == mipsel) |
| 62 | 62 |
| 63 ############################################################################## | 63 ############################################################################## |
| 64 # This test expects to reach a certain recursion depth, which may not work | 64 # This test expects to reach a certain recursion depth, which may not work |
| 65 # for debug mode. | 65 # for debug mode. |
| 66 json-recursive: PASS, (PASS || FAIL) if $mode == debug | 66 json-recursive: PASS, (PASS || FAIL) if $mode == debug |
| 67 | 67 |
| 68 ############################################################################## | 68 ############################################################################## |
| 69 # Skip long running test that times out in debug mode. |
| 70 regress/regress-crbug-160010: PASS, SKIP if $mode == debug |
| 71 |
| 72 ############################################################################## |
| 69 # This test sets the umask on a per-process basis and hence cannot be | 73 # This test sets the umask on a per-process basis and hence cannot be |
| 70 # used in multi-threaded runs. | 74 # used in multi-threaded runs. |
| 71 # On android there is no /tmp directory. | 75 # On android there is no /tmp directory. |
| 72 d8-os: PASS, SKIP if ($isolates || $arch == android_arm || $arch == android_ia32
) | 76 d8-os: PASS, SKIP if ($isolates || $arch == android_arm || $arch == android_ia32
) |
| 73 tools/tickprocessor: PASS, SKIP if ($arch == android_arm || $arch == android_ia3
2) | 77 tools/tickprocessor: PASS, SKIP if ($arch == android_arm || $arch == android_ia3
2) |
| 74 | 78 |
| 75 ############################################################################## | 79 ############################################################################## |
| 76 [ $arch == arm || $arch == android_arm ] | 80 [ $arch == arm || $arch == android_arm ] |
| 77 | 81 |
| 78 # Slow tests which times out in debug mode. | 82 # Slow tests which times out in debug mode. |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 # Currently always deopt on minus zero | 136 # Currently always deopt on minus zero |
| 133 math-floor-of-div-minus-zero: SKIP | 137 math-floor-of-div-minus-zero: SKIP |
| 134 | 138 |
| 135 ############################################################################## | 139 ############################################################################## |
| 136 [ $arch == mipsel ] | 140 [ $arch == mipsel ] |
| 137 | 141 |
| 138 # Slow tests which times out in debug mode. | 142 # Slow tests which times out in debug mode. |
| 139 try: PASS, SKIP if $mode == debug | 143 try: PASS, SKIP if $mode == debug |
| 140 debug-scripts-request: PASS, SKIP if $mode == debug | 144 debug-scripts-request: PASS, SKIP if $mode == debug |
| 141 array-constructor: PASS, SKIP if $mode == debug | 145 array-constructor: PASS, SKIP if $mode == debug |
| 142 regress-crbug-160010: PASS, SKIP if $mode == debug | |
| 143 | 146 |
| 144 # Times out often in release mode on MIPS. | 147 # Times out often in release mode on MIPS. |
| 145 compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release | 148 compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release |
| 146 array-splice: PASS || TIMEOUT | 149 array-splice: PASS || TIMEOUT |
| 147 | 150 |
| 148 # Long running test. | 151 # Long running test. |
| 149 mirror-object: PASS || TIMEOUT | 152 mirror-object: PASS || TIMEOUT |
| 150 string-indexof-2: PASS || TIMEOUT | 153 string-indexof-2: PASS || TIMEOUT |
| 151 | 154 |
| 152 # BUG(3251035): Timeouts in long looping crankshaft optimization | 155 # BUG(3251035): Timeouts in long looping crankshaft optimization |
| (...skipping 26 matching lines...) Expand all Loading... |
| 179 # the test requires too much time to run. However, the problem test covers | 182 # the test requires too much time to run. However, the problem test covers |
| 180 # should be platform-independent. | 183 # should be platform-independent. |
| 181 regress/regress-1132: SKIP | 184 regress/regress-1132: SKIP |
| 182 | 185 |
| 183 # Stack manipulations in LiveEdit is not implemented for this arch. | 186 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 184 debug-liveedit-check-stack: SKIP | 187 debug-liveedit-check-stack: SKIP |
| 185 debug-liveedit-stack-padding: SKIP | 188 debug-liveedit-stack-padding: SKIP |
| 186 debug-liveedit-restart-frame: SKIP | 189 debug-liveedit-restart-frame: SKIP |
| 187 debug-liveedit-double-call: SKIP | 190 debug-liveedit-double-call: SKIP |
| 188 | 191 |
| OLD | NEW |