| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': [SKIP], | 90 'migrations': [SKIP], |
| 91 'array-functions-prototype-misc.js': [PASS, ['mode == debug', SKIP]], |
| 91 | 92 |
| 92 ############################################################################## | 93 ############################################################################## |
| 93 # This test sets the umask on a per-process basis and hence cannot be | 94 # This test sets the umask on a per-process basis and hence cannot be |
| 94 # used in multi-threaded runs. | 95 # used in multi-threaded runs. |
| 95 # On android there is no /tmp directory. | 96 # On android there is no /tmp directory. |
| 96 # Currently d8-os generates a temporary directory name using Math.random(), so | 97 # 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 | 98 # 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 | 99 # 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. | 100 # 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]], | 101 'd8-os': [PASS, NO_VARIANTS, ['isolates or arch == android_arm or arch == andr
oid_arm64 or arch == android_ia32', SKIP]], |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 'never-optimize': [SKIP], | 477 'never-optimize': [SKIP], |
| 477 'regress/regress-2185-2': [SKIP], | 478 'regress/regress-2185-2': [SKIP], |
| 478 'harmony/object-observe': [SKIP], | 479 'harmony/object-observe': [SKIP], |
| 479 'readonly': [SKIP], | 480 'readonly': [SKIP], |
| 480 'array-feedback': [SKIP], | 481 'array-feedback': [SKIP], |
| 481 | 482 |
| 482 # Deopt every n garbage collections collides with deopt every n times. | 483 # Deopt every n garbage collections collides with deopt every n times. |
| 483 'regress/regress-2653': [SKIP], | 484 'regress/regress-2653': [SKIP], |
| 484 }], # 'deopt_fuzzer == True' | 485 }], # 'deopt_fuzzer == True' |
| 485 ] | 486 ] |
| OLD | NEW |