| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 'nans': [PASS, ], | 228 'nans': [PASS, ], |
| 229 | 229 |
| 230 # This test variant makes only sense on arm. | 230 # This test variant makes only sense on arm. |
| 231 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], | 231 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], |
| 232 | 232 |
| 233 # Too slow for slow variants. | 233 # Too slow for slow variants. |
| 234 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], | 234 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], |
| 235 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], | 235 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], |
| 236 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], | 236 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], |
| 237 | 237 |
| 238 # BUG(v8:4458). TODO(mvstanton): reenable the test once --vector-stores is | |
| 239 # prermanently enabled. | |
| 240 'call-counts': [SKIP], | |
| 241 | |
| 242 # Slow tests. | 238 # Slow tests. |
| 243 'copy-on-write-assert': [PASS, SLOW], | 239 'copy-on-write-assert': [PASS, SLOW], |
| 244 'debug-scopes': [PASS, SLOW], | 240 'debug-scopes': [PASS, SLOW], |
| 245 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], | 241 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], |
| 246 'readonly': [PASS, SLOW], | 242 'readonly': [PASS, SLOW], |
| 247 'regress/regress-1200351': [PASS, SLOW], | 243 'regress/regress-1200351': [PASS, SLOW], |
| 248 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], | 244 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], |
| 249 'es6/tail-call-megatest*': [PASS, SLOW, FAST_VARIANTS, ['tsan', SKIP]], | 245 'es6/tail-call-megatest*': [PASS, SLOW, FAST_VARIANTS, ['tsan', SKIP]], |
| 250 | 246 |
| 251 # TODO(titzer): ASM->WASM tests on these platforms | 247 # TODO(titzer): ASM->WASM tests on these platforms |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 ############################################################################## | 872 ############################################################################## |
| 877 ['gcov_coverage', { | 873 ['gcov_coverage', { |
| 878 # Tests taking too long. | 874 # Tests taking too long. |
| 879 'array-functions-prototype-misc': [SKIP], | 875 'array-functions-prototype-misc': [SKIP], |
| 880 | 876 |
| 881 # Stack overflow. | 877 # Stack overflow. |
| 882 'big-array-literal': [SKIP], | 878 'big-array-literal': [SKIP], |
| 883 }], # 'gcov_coverage' | 879 }], # 'gcov_coverage' |
| 884 | 880 |
| 885 ] | 881 ] |
| OLD | NEW |