| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 'json-recursive': [PASS, ['mode == debug', PASS, FAIL]], | 86 'json-recursive': [PASS, ['mode == debug', PASS, FAIL]], |
| 87 | 87 |
| 88 ############################################################################## | 88 ############################################################################## |
| 89 # Skip long running tests that time out in debug mode. | 89 # Skip long running tests that time out in debug mode. |
| 90 'generated-transition-stub': [PASS, ['mode == debug', SKIP]], | 90 'generated-transition-stub': [PASS, ['mode == debug', SKIP]], |
| 91 | 91 |
| 92 ############################################################################## | 92 ############################################################################## |
| 93 # This test sets the umask on a per-process basis and hence cannot be | 93 # This test sets the umask on a per-process basis and hence cannot be |
| 94 # used in multi-threaded runs. | 94 # used in multi-threaded runs. |
| 95 # On android there is no /tmp directory. | 95 # On android there is no /tmp directory. |
| 96 'd8-os': [PASS, ['isolates or arch == android_arm or arch == android_arm64 or
arch == android_ia32', SKIP]], | 96 # 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 # 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 'd8-os': [PASS, NO_VARIANTS, ['isolates or arch == android_arm or arch == andr
oid_arm64 or arch == android_ia32', SKIP]], |
| 97 'tools/tickprocessor': [PASS, ['arch == android_arm or arch == android_arm64 o
r arch == android_ia32', SKIP]], | 101 'tools/tickprocessor': [PASS, ['arch == android_arm or arch == android_arm64 o
r arch == android_ia32', SKIP]], |
| 98 | 102 |
| 99 ############################################################################## | 103 ############################################################################## |
| 100 # Long running test that reproduces memory leak and should be run manually. | 104 # Long running test that reproduces memory leak and should be run manually. |
| 101 'regress/regress-2073': [SKIP], | 105 'regress/regress-2073': [SKIP], |
| 102 | 106 |
| 103 ############################################################################## | 107 ############################################################################## |
| 104 # Tests verifying CHECK and ASSERT. | 108 # Tests verifying CHECK and ASSERT. |
| 105 'verify-check-false': [FAIL, NO_VARIANTS], | 109 'verify-check-false': [FAIL, NO_VARIANTS], |
| 106 'verify-assert-false': [NO_VARIANTS, ['mode == release', PASS], ['mode == debu
g', FAIL]], | 110 'verify-assert-false': [NO_VARIANTS, ['mode == release', PASS], ['mode == debu
g', FAIL]], |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 'never-optimize': [SKIP], | 385 'never-optimize': [SKIP], |
| 382 'regress/regress-2185-2': [SKIP], | 386 'regress/regress-2185-2': [SKIP], |
| 383 'harmony/object-observe': [SKIP], | 387 'harmony/object-observe': [SKIP], |
| 384 'readonly': [SKIP], | 388 'readonly': [SKIP], |
| 385 'array-feedback': [SKIP], | 389 'array-feedback': [SKIP], |
| 386 | 390 |
| 387 # Deopt every n garbage collections collides with deopt every n times. | 391 # Deopt every n garbage collections collides with deopt every n times. |
| 388 'regress/regress-2653': [SKIP], | 392 'regress/regress-2653': [SKIP], |
| 389 }], # 'deopt_fuzzer == True' | 393 }], # 'deopt_fuzzer == True' |
| 390 ] | 394 ] |
| OLD | NEW |