| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 | 200 |
| 201 ############################################################################## | 201 ############################################################################## |
| 202 # This test sets the umask on a per-process basis and hence cannot be | 202 # This test sets the umask on a per-process basis and hence cannot be |
| 203 # used in multi-threaded runs. | 203 # used in multi-threaded runs. |
| 204 # On android there is no /tmp directory. | 204 # On android there is no /tmp directory. |
| 205 # Currently d8-os generates a temporary directory name using Math.random(), so | 205 # Currently d8-os generates a temporary directory name using Math.random(), so |
| 206 # we cannot run several variants of d8-os simultaneously, since all of them | 206 # we cannot run several variants of d8-os simultaneously, since all of them |
| 207 # get the same random seed and would generate the same directory name. Besides | 207 # get the same random seed and would generate the same directory name. Besides |
| 208 # that, it doesn't make sense to run several variants of d8-os anyways. | 208 # that, it doesn't make sense to run several variants of d8-os anyways. |
| 209 'd8-os': [PASS, NO_VARIANTS, ['isolates or arch == android_arm or arch == andr
oid_arm64 or arch == android_ia32', SKIP]], | 209 'd8-os': [PASS, NO_VARIANTS, ['isolates or arch == android_arm or arch == andr
oid_arm64 or arch == android_ia32', SKIP]], |
| 210 'tools/tickprocessor': [PASS, ['arch == android_arm or arch == android_arm64 o
r arch == android_ia32', SKIP]], | 210 'tools/tickprocessor': [PASS, NO_VARIANTS, ['arch == android_arm or arch == an
droid_arm64 or arch == android_ia32', SKIP]], |
| 211 | 211 |
| 212 ############################################################################## | 212 ############################################################################## |
| 213 # Long running test that reproduces memory leak and should be run manually. | 213 # Long running test that reproduces memory leak and should be run manually. |
| 214 'regress/regress-2073': [SKIP], | 214 'regress/regress-2073': [SKIP], |
| 215 | 215 |
| 216 ############################################################################## | 216 ############################################################################## |
| 217 # Tests verifying CHECK and ASSERT. | 217 # Tests verifying CHECK and ASSERT. |
| 218 'verify-check-false': [FAIL, NO_VARIANTS], | 218 'verify-check-false': [FAIL, NO_VARIANTS], |
| 219 'verify-assert-false': [NO_VARIANTS, ['mode == release', PASS], ['mode == debu
g', FAIL]], | 219 'verify-assert-false': [NO_VARIANTS, ['mode == release', PASS], ['mode == debu
g', FAIL]], |
| 220 | 220 |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 'never-optimize': [SKIP], | 590 'never-optimize': [SKIP], |
| 591 'regress/regress-2185-2': [SKIP], | 591 'regress/regress-2185-2': [SKIP], |
| 592 'harmony/object-observe': [SKIP], | 592 'harmony/object-observe': [SKIP], |
| 593 'readonly': [SKIP], | 593 'readonly': [SKIP], |
| 594 'array-feedback': [SKIP], | 594 'array-feedback': [SKIP], |
| 595 | 595 |
| 596 # Deopt every n garbage collections collides with deopt every n times. | 596 # Deopt every n garbage collections collides with deopt every n times. |
| 597 'regress/regress-2653': [SKIP], | 597 'regress/regress-2653': [SKIP], |
| 598 }], # 'deopt_fuzzer == True' | 598 }], # 'deopt_fuzzer == True' |
| 599 ] | 599 ] |
| OLD | NEW |