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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 'nans': [PASS, ], | 248 'nans': [PASS, ], |
249 | 249 |
250 # This test variant makes only sense on arm. | 250 # This test variant makes only sense on arm. |
251 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], | 251 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], |
252 | 252 |
253 # Too slow for slow variants. | 253 # Too slow for slow variants. |
254 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], | 254 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], |
255 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], | 255 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], |
256 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], | 256 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], |
257 | 257 |
258 # BUG(v8:3838). | |
259 'regress/regress-3116': [PASS, ['isolates', FLAKY]], | |
260 | |
261 # BUG(v8:4458). TODO(mvstanton): reenable the test once --vector-stores is | 258 # BUG(v8:4458). TODO(mvstanton): reenable the test once --vector-stores is |
262 # prermanently enabled. | 259 # prermanently enabled. |
263 'call-counts': [SKIP], | 260 'call-counts': [SKIP], |
264 | 261 |
265 # BUG(chromium:508074). Remove this once the issue is fixed. | 262 # BUG(chromium:508074). Remove this once the issue is fixed. |
266 'harmony/arrow-rest-params': [PASS, NO_VARIANTS], | 263 'harmony/arrow-rest-params': [PASS, NO_VARIANTS], |
267 'harmony/rest-params': [PASS, ['no_snap == True', NO_VARIANTS]], | 264 'harmony/rest-params': [PASS, ['no_snap == True', NO_VARIANTS]], |
268 | 265 |
269 # Slow tests. | 266 # Slow tests. |
270 'copy-on-write-assert': [PASS, SLOW], | 267 'copy-on-write-assert': [PASS, SLOW], |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 ############################################################################## | 881 ############################################################################## |
885 ['gcov_coverage', { | 882 ['gcov_coverage', { |
886 # Tests taking too long. | 883 # Tests taking too long. |
887 'array-functions-prototype-misc': [SKIP], | 884 'array-functions-prototype-misc': [SKIP], |
888 | 885 |
889 # Stack overflow. | 886 # Stack overflow. |
890 'big-array-literal': [SKIP], | 887 'big-array-literal': [SKIP], |
891 }], # 'gcov_coverage' | 888 }], # 'gcov_coverage' |
892 | 889 |
893 ] | 890 ] |
OLD | NEW |