| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 ############################################################################## | 207 ############################################################################## |
| 208 # This test sets the umask on a per-process basis and hence cannot be | 208 # This test sets the umask on a per-process basis and hence cannot be |
| 209 # used in multi-threaded runs. | 209 # used in multi-threaded runs. |
| 210 # On android there is no /tmp directory. | 210 # On android there is no /tmp directory. |
| 211 # Currently d8-os generates a temporary directory name using Math.random(), so | 211 # Currently d8-os generates a temporary directory name using Math.random(), so |
| 212 # we cannot run several variants of d8-os simultaneously, since all of them | 212 # we cannot run several variants of d8-os simultaneously, since all of them |
| 213 # get the same random seed and would generate the same directory name. Besides | 213 # get the same random seed and would generate the same directory name. Besides |
| 214 # that, it doesn't make sense to run several variants of d8-os anyways. | 214 # that, it doesn't make sense to run several variants of d8-os anyways. |
| 215 'd8-os': [PASS, NO_VARIANTS, ['isolates or arch == android_arm or arch == andr
oid_arm64 or arch == android_ia32', SKIP]], | 215 'd8-os': [PASS, NO_VARIANTS, ['isolates or arch == android_arm or arch == andr
oid_arm64 or arch == android_ia32', SKIP]], |
| 216 'tools/tickprocessor': [PASS, NO_VARIANTS, ['arch == android_arm or arch == an
droid_arm64 or arch == android_ia32', SKIP]], | 216 'tools/tickprocessor': [PASS, NO_VARIANTS, ['arch == android_arm or arch == an
droid_arm64 or arch == android_ia32', SKIP]], |
| 217 'tools/dumpcpp': [PASS, NO_VARIANTS, ['arch == android_arm or arch == android_
arm64 or arch == android_ia32', SKIP]], |
| 217 | 218 |
| 218 ############################################################################## | 219 ############################################################################## |
| 219 # Long running test that reproduces memory leak and should be run manually. | 220 # Long running test that reproduces memory leak and should be run manually. |
| 220 'regress/regress-2073': [SKIP], | 221 'regress/regress-2073': [SKIP], |
| 221 | 222 |
| 222 ############################################################################## | 223 ############################################################################## |
| 223 # Tests verifying CHECK and ASSERT. | 224 # Tests verifying CHECK and ASSERT. |
| 224 'verify-check-false': [FAIL, NO_VARIANTS], | 225 'verify-check-false': [FAIL, NO_VARIANTS], |
| 225 'verify-assert-false': [NO_VARIANTS, ['mode == release and dcheck_always_on ==
False', PASS], ['mode == debug or dcheck_always_on == True', FAIL]], | 226 'verify-assert-false': [NO_VARIANTS, ['mode == release and dcheck_always_on ==
False', PASS], ['mode == debug or dcheck_always_on == True', FAIL]], |
| 226 | 227 |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 ############################################################################## | 891 ############################################################################## |
| 891 ['gcov_coverage', { | 892 ['gcov_coverage', { |
| 892 # Tests taking too long. | 893 # Tests taking too long. |
| 893 'array-functions-prototype-misc': [SKIP], | 894 'array-functions-prototype-misc': [SKIP], |
| 894 | 895 |
| 895 # Stack overflow. | 896 # Stack overflow. |
| 896 'big-array-literal': [SKIP], | 897 'big-array-literal': [SKIP], |
| 897 }], # 'gcov_coverage' | 898 }], # 'gcov_coverage' |
| 898 | 899 |
| 899 ] | 900 ] |
| OLD | NEW |