| 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 # These use a built-in that's only present in debug mode. They take | 59 # These use a built-in that's only present in debug mode. They take |
| 60 # too long to run in debug mode on ARM and MIPS. | 60 # too long to run in debug mode on ARM and MIPS. |
| 61 'fuzz-natives-part*': [PASS, ['mode == release or arch == arm or arch == andro
id_arm or arch == mipsel', SKIP]], | 61 'fuzz-natives-part*': [PASS, ['mode == release or arch == arm or arch == andro
id_arm or arch == mipsel', SKIP]], |
| 62 | 62 |
| 63 'big-object-literal': [PASS, ['arch == arm or arch == android_arm', SKIP]], | 63 'big-object-literal': [PASS, ['arch == arm or arch == android_arm', SKIP]], |
| 64 | 64 |
| 65 # Issue 488: this test sometimes times out. | 65 # Issue 488: this test sometimes times out. |
| 66 'array-constructor': [PASS, TIMEOUT], | 66 'array-constructor': [PASS, TIMEOUT], |
| 67 | 67 |
| 68 # Very slow on ARM and MIPS, contains no architecture dependent code. | 68 # Very slow on ARM and MIPS, contains no architecture dependent code. |
| 69 'unicode-case-overoptimization': [PASS, ['arch == arm or arch == android_arm o
r arch == mipsel', TIMEOUT]], | 69 'unicode-case-overoptimization': [PASS, NO_VARIANTS, ['arch == arm or arch ==
android_arm or arch == mipsel', TIMEOUT]], |
| 70 | 70 |
| 71 ############################################################################## | 71 ############################################################################## |
| 72 # This test expects to reach a certain recursion depth, which may not work | 72 # This test expects to reach a certain recursion depth, which may not work |
| 73 # for debug mode. | 73 # for debug mode. |
| 74 'json-recursive': [PASS, ['mode == debug', PASS, FAIL]], | 74 'json-recursive': [PASS, ['mode == debug', PASS, FAIL]], |
| 75 | 75 |
| 76 ############################################################################## | 76 ############################################################################## |
| 77 # Skip long running tests that time out in debug mode. | 77 # Skip long running tests that time out in debug mode. |
| 78 'generated-transition-stub': [PASS, ['mode == debug', SKIP]], | 78 'generated-transition-stub': [PASS, ['mode == debug', SKIP]], |
| 79 | 79 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 'never-optimize': [SKIP], | 252 'never-optimize': [SKIP], |
| 253 'regress/regress-2185-2': [SKIP], | 253 'regress/regress-2185-2': [SKIP], |
| 254 'harmony/object-observe': [SKIP], | 254 'harmony/object-observe': [SKIP], |
| 255 'readonly': [SKIP], | 255 'readonly': [SKIP], |
| 256 'array-feedback': [SKIP], | 256 'array-feedback': [SKIP], |
| 257 | 257 |
| 258 # Deopt every n garbage collections collides with deopt every n times. | 258 # Deopt every n garbage collections collides with deopt every n times. |
| 259 'regress/regress-2653': [SKIP], | 259 'regress/regress-2653': [SKIP], |
| 260 }], # 'deopt_fuzzer == True' | 260 }], # 'deopt_fuzzer == True' |
| 261 ] | 261 ] |
| OLD | NEW |