| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'unicode-case-overoptimization': [PASS, NO_VARIANTS, ['arch == arm or arch ==
android_arm or arch == android_arm64 or arch == mipsel or arch == mips', TIMEOUT
]], | 80 'unicode-case-overoptimization': [PASS, NO_VARIANTS, ['arch == arm or arch ==
android_arm or arch == android_arm64 or arch == mipsel or arch == mips', TIMEOUT
]], |
| 81 | 81 |
| 82 ############################################################################## | 82 ############################################################################## |
| 83 # This test expects to reach a certain recursion depth, which may not work | 83 # This test expects to reach a certain recursion depth, which may not work |
| 84 # for debug mode. | 84 # for debug mode. |
| 85 'json-recursive': [PASS, ['mode == debug', PASS, FAIL]], | 85 'json-recursive': [PASS, ['mode == debug', PASS, FAIL]], |
| 86 | 86 |
| 87 ############################################################################## | 87 ############################################################################## |
| 88 # Skip long running tests that time out in debug mode. | 88 # Skip long running tests that time out in debug mode. |
| 89 'generated-transition-stub': [PASS, ['mode == debug', SKIP]], | 89 'generated-transition-stub': [PASS, ['mode == debug', SKIP]], |
| 90 'migrations': [PASS, ['mode == debug', SLOW]], | |
| 91 | 90 |
| 92 ############################################################################## | 91 ############################################################################## |
| 93 # This test sets the umask on a per-process basis and hence cannot be | 92 # This test sets the umask on a per-process basis and hence cannot be |
| 94 # used in multi-threaded runs. | 93 # used in multi-threaded runs. |
| 95 # On android there is no /tmp directory. | 94 # On android there is no /tmp directory. |
| 96 # Currently d8-os generates a temporary directory name using Math.random(), so | 95 # Currently d8-os generates a temporary directory name using Math.random(), so |
| 97 # we cannot run several variants of d8-os simultaneously, since all of them | 96 # we cannot run several variants of d8-os simultaneously, since all of them |
| 98 # get the same random seed and would generate the same directory name. Besides | 97 # get the same random seed and would generate the same directory name. Besides |
| 99 # that, it doesn't make sense to run several variants of d8-os anyways. | 98 # that, it doesn't make sense to run several variants of d8-os anyways. |
| 100 'd8-os': [PASS, NO_VARIANTS, ['isolates or arch == android_arm or arch == andr
oid_arm64 or arch == android_ia32', SKIP]], | 99 'd8-os': [PASS, NO_VARIANTS, ['isolates or arch == android_arm or arch == andr
oid_arm64 or arch == android_ia32', SKIP]], |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 'never-optimize': [SKIP], | 396 'never-optimize': [SKIP], |
| 398 'regress/regress-2185-2': [SKIP], | 397 'regress/regress-2185-2': [SKIP], |
| 399 'harmony/object-observe': [SKIP], | 398 'harmony/object-observe': [SKIP], |
| 400 'readonly': [SKIP], | 399 'readonly': [SKIP], |
| 401 'array-feedback': [SKIP], | 400 'array-feedback': [SKIP], |
| 402 | 401 |
| 403 # Deopt every n garbage collections collides with deopt every n times. | 402 # Deopt every n garbage collections collides with deopt every n times. |
| 404 'regress/regress-2653': [SKIP], | 403 'regress/regress-2653': [SKIP], |
| 405 }], # 'deopt_fuzzer == True' | 404 }], # 'deopt_fuzzer == True' |
| 406 ] | 405 ] |
| OLD | NEW |