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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
275 'wasm/asm-wasm-switch': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi ps64el]', SKIP]], | 275 'wasm/asm-wasm-switch': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi ps64el]', SKIP]], |
276 | 276 |
277 # TODO(branelson): Figure out why ignition + asm->wasm fails embenchen. | 277 # TODO(branelson): Figure out why ignition + asm->wasm fails embenchen. |
278 'wasm/embenchen/*': [PASS, ['arch == arm64', SKIP], ['ignition == True', SKIP] ], | 278 'wasm/embenchen/*': [PASS, ['arch == arm64', SKIP], ['ignition == True', SKIP] ], |
279 | 279 |
280 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 280 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
281 'harmony/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 281 'harmony/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
282 'harmony/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]] , | 282 'harmony/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]] , |
283 # desugaring regexp property class relies on ICU. | 283 # desugaring regexp property class relies on ICU. |
284 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], | 284 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], |
285 | |
286 ############################################################################ | |
287 # Ignition | |
288 | |
289 # TODO(yangguo,4690): flaky failures on the bots. | |
290 'debug-stepin-builtin-callback-opt': [PASS, NO_IGNITION], | |
Yang
2016/04/28 07:24:04
Note that this entry has already been removed.
| |
291 | |
292 # TODO(rmcilroy,4765): assertion failures in LiveEdit tests. | |
293 'debug-liveedit-restart-frame': [PASS, NO_IGNITION], | |
294 'debug-liveedit-literals': [PASS, NO_IGNITION], | |
295 'debug-liveedit-3': [PASS, NO_IGNITION], | |
296 'debug-liveedit-1': [PASS, NO_IGNITION], | |
297 'debug-liveedit-2': [PASS, NO_IGNITION], | |
298 'debug-liveedit-patch-positions-replace': [PASS, NO_IGNITION], | |
299 'debug-liveedit-patch-positions': [PASS, NO_IGNITION], | |
300 'debug-liveedit-stepin': [PASS, NO_IGNITION], | |
301 'debug-liveedit-newsource': [PASS, NO_IGNITION], | |
302 'debug-liveedit-stack-padding': [PASS, NO_IGNITION], | |
303 'debug-liveedit-breakpoints': [PASS, NO_IGNITION], | |
304 'es6/debug-liveedit-new-target-1': [PASS, NO_IGNITION], | |
305 'es6/debug-liveedit-new-target-2': [PASS, NO_IGNITION], | |
306 'es6/debug-liveedit-new-target-3': [PASS, NO_IGNITION], | |
307 'es6/generators-debug-liveedit': [PASS, NO_IGNITION], | |
308 | |
309 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. | |
310 'array-literal-feedback': [PASS, NO_IGNITION], | |
311 'regress/regress-4121': [PASS, NO_IGNITION], | |
312 | |
313 # TODO(mythria, 4764): lack of osr support. | |
314 'regress/regress-2618': [PASS, NO_IGNITION], | |
315 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop | |
316 # till it is optimized. So test timeouts. | |
317 'array-literal-transitions': [PASS, NO_IGNITION], | |
318 | |
319 # TODO(mythria, 4680): Relate to GC and ignition holding references to | |
320 # objects. | |
321 'es6/mirror-collections': [PASS, NO_IGNITION], | |
322 | |
323 # TODO(rmcilroy, 4680): Script throws RangeError as expected, but does so duri ng | |
324 # eager compile of the whole script instead of during lazy compile of the func tion | |
325 # f(), so we can't catch the exception in the try/catch. Skip because on some | |
326 # platforms the stack limit is different and the exception doesn't fire. | |
327 'regress/regress-crbug-589472': [PASS, NO_IGNITION], | |
328 | |
329 # Debugger test cases that pass with ignition, but not full-codegen. | |
330 # These differences between full-codegen and ignition are deliberate. | |
331 'ignition/elided-instruction-no-ignition': [PASS, NO_IGNITION], | |
332 | |
333 'wasm/asm-wasm-f32': [PASS, ['arch in [arm64]', NO_IGNITION]], | |
334 'wasm/asm-wasm-f64': [PASS, ['arch in [arm64]', NO_IGNITION]], | |
285 }], # ALWAYS | 335 }], # ALWAYS |
286 | 336 |
287 ['novfp3 == True', { | 337 ['novfp3 == True', { |
288 'asm/embenchen/box2d': [SKIP], | 338 'asm/embenchen/box2d': [SKIP], |
289 'asm/embenchen/zlib': [SKIP], | 339 'asm/embenchen/zlib': [SKIP], |
290 'asm/embenchen/memops': [SKIP], | 340 'asm/embenchen/memops': [SKIP], |
291 'asm/embenchen/lua_binarytrees': [SKIP], | 341 'asm/embenchen/lua_binarytrees': [SKIP], |
292 }], # novfp3 == True | 342 }], # novfp3 == True |
293 | 343 |
294 ############################################################################## | 344 ############################################################################## |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
354 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], | 404 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], |
355 | 405 |
356 # BUG(v8:3097) | 406 # BUG(v8:3097) |
357 'debug-references': [SKIP], | 407 'debug-references': [SKIP], |
358 | 408 |
359 # BUG(v8:4754). | 409 # BUG(v8:4754). |
360 'debug-referenced-by': [PASS, NO_VARIANTS], | 410 'debug-referenced-by': [PASS, NO_VARIANTS], |
361 | 411 |
362 # BUG(v8:4779): Crashes flakily with stress mode on arm64. | 412 # BUG(v8:4779): Crashes flakily with stress mode on arm64. |
363 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], | 413 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], |
414 | |
415 # TODO(oth,4680): failures from the bots. | |
416 'es6/debug-step-destructuring-bind': [PASS, NO_IGNITION], | |
417 'es6/debug-stepin-collections-foreach': [PASS, NO_IGNITION], | |
418 'ignition/elided-instruction': [PASS, NO_IGNITION], | |
419 'regress/regress-269': [PASS, NO_IGNITION], | |
364 }], # 'gc_stress == True' | 420 }], # 'gc_stress == True' |
365 | 421 |
366 ############################################################################## | 422 ############################################################################## |
367 ['no_i18n == True and mode == debug', { | 423 ['no_i18n == True and mode == debug', { |
368 # Tests too slow for no18n debug. | 424 # Tests too slow for no18n debug. |
369 'regress/regress-1200351': [SKIP], | 425 'regress/regress-1200351': [SKIP], |
370 }], # 'no_i18n == True and mode == debug' | 426 }], # 'no_i18n == True and mode == debug' |
371 | 427 |
372 ############################################################################## | 428 ############################################################################## |
373 ['byteorder == big', { | 429 ['byteorder == big', { |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
443 'regress/regress-331444': [PASS, SLOW], | 499 'regress/regress-331444': [PASS, SLOW], |
444 'regress/regress-490': [PASS, SLOW], | 500 'regress/regress-490': [PASS, SLOW], |
445 'regress/regress-crbug-217858': [PASS, SLOW], | 501 'regress/regress-crbug-217858': [PASS, SLOW], |
446 'regress/regress-create-exception': [PASS, SLOW], | 502 'regress/regress-create-exception': [PASS, SLOW], |
447 'regress/regress-json-stringify-gc': [PASS, SLOW], | 503 'regress/regress-json-stringify-gc': [PASS, SLOW], |
448 'string-indexof-2': [PASS, SLOW], | 504 'string-indexof-2': [PASS, SLOW], |
449 'unicodelctest-no-optimization': [PASS, SLOW], | 505 'unicodelctest-no-optimization': [PASS, SLOW], |
450 'unicodelctest': [PASS, SLOW], | 506 'unicodelctest': [PASS, SLOW], |
451 'unicode-test': [PASS, SLOW], | 507 'unicode-test': [PASS, SLOW], |
452 'whitespaces': [PASS, TIMEOUT, SLOW], | 508 'whitespaces': [PASS, TIMEOUT, SLOW], |
509 | |
510 # TODO(rmcilroy,4680): Arm64 specific timeouts. | |
511 'asm/construct-double': [PASS, NO_IGNITION], | |
512 'compiler/osr-one': [PASS, NO_IGNITION], | |
513 'compiler/osr-two': [PASS, NO_IGNITION], | |
514 'wasm/asm-wasm-i32': [PASS, NO_IGNITION], | |
515 'wasm/asm-wasm-u32': [PASS, NO_IGNITION], | |
453 }], # 'arch == arm64' | 516 }], # 'arch == arm64' |
454 | 517 |
455 ['arch == arm64 and mode == debug and simulator_run == True', { | 518 ['arch == arm64 and mode == debug and simulator_run == True', { |
456 | 519 |
457 # Pass but take too long with the simulator in debug mode. | 520 # Pass but take too long with the simulator in debug mode. |
458 'array-iterate-backwards': [PASS, TIMEOUT], | 521 'array-iterate-backwards': [PASS, TIMEOUT], |
459 'array-sort': [PASS, TIMEOUT], | 522 'array-sort': [PASS, TIMEOUT], |
460 'packed-elements': [SKIP], | 523 'packed-elements': [SKIP], |
461 'regexp-global': [SKIP], | 524 'regexp-global': [SKIP], |
462 'compiler/alloc-numbers': [SKIP], | 525 'compiler/alloc-numbers': [SKIP], |
(...skipping 18 matching lines...) Expand all Loading... | |
481 | 544 |
482 ############################################################################## | 545 ############################################################################## |
483 ['msan == True', { | 546 ['msan == True', { |
484 # Skip tests not suitable for MSAN. | 547 # Skip tests not suitable for MSAN. |
485 'big-array-literal': [SKIP], | 548 'big-array-literal': [SKIP], |
486 # ICU upstream issues. | 549 # ICU upstream issues. |
487 'date': [SKIP], | 550 'date': [SKIP], |
488 'deep-recursion': [SKIP], | 551 'deep-recursion': [SKIP], |
489 'regress/regress-builtinbust-7': [SKIP], | 552 'regress/regress-builtinbust-7': [SKIP], |
490 'string-localecompare': [SKIP], | 553 'string-localecompare': [SKIP], |
554 | |
555 # TODO(mythria,4680): All of these tests have large loops and hence slow | |
556 # and timeout. | |
557 'compiler/osr-big': [PASS, NO_IGNITION], | |
558 'compiler/osr-nested': [PASS, NO_IGNITION], | |
559 'regress/regress-298269': [PASS, NO_IGNITION], | |
560 'regress/regress-crbug-319860': [PASS, NO_IGNITION], | |
561 'regress/regress-deep-proto': [PASS, NO_IGNITION], | |
562 'try': [PASS, NO_IGNITION], | |
563 # Too slow for interpreter and msan. | |
564 'es6/tail-call-megatest*': [PASS, NO_IGNITION], | |
491 }], # 'msan == True' | 565 }], # 'msan == True' |
492 | 566 |
493 ############################################################################## | 567 ############################################################################## |
494 ['arch == arm or arch == android_arm', { | 568 ['arch == arm or arch == android_arm', { |
495 | 569 |
496 # Slow tests which times out in debug mode. | 570 # Slow tests which times out in debug mode. |
497 'try': [PASS, ['mode == debug', SKIP]], | 571 'try': [PASS, ['mode == debug', SKIP]], |
498 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 572 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
499 'array-constructor': [PASS, ['mode == debug', SKIP]], | 573 'array-constructor': [PASS, ['mode == debug', SKIP]], |
500 'regress/regress-1122': [PASS, SLOW, ['mode == debug and arch == android_arm', SKIP]], | 574 'regress/regress-1122': [PASS, SLOW, ['mode == debug and arch == android_arm', SKIP]], |
(...skipping 25 matching lines...) Expand all Loading... | |
526 # Slow tests. | 600 # Slow tests. |
527 'array-sort': [PASS, SLOW], | 601 'array-sort': [PASS, SLOW], |
528 'compiler/osr-with-args': [PASS, SLOW], | 602 'compiler/osr-with-args': [PASS, SLOW], |
529 'mirror-object': [PASS, SLOW], | 603 'mirror-object': [PASS, SLOW], |
530 'packed-elements': [PASS, SLOW], | 604 'packed-elements': [PASS, SLOW], |
531 'regress/regress-2185-2': [PASS, SLOW], | 605 'regress/regress-2185-2': [PASS, SLOW], |
532 'regress/regress-2790': [PASS, SLOW], | 606 'regress/regress-2790': [PASS, SLOW], |
533 'regress/regress-91008': [PASS, SLOW], | 607 'regress/regress-91008': [PASS, SLOW], |
534 'regress/regress-json-stringify-gc': [PASS, SLOW], | 608 'regress/regress-json-stringify-gc': [PASS, SLOW], |
535 'string-indexof-2': [PASS, TIMEOUT], | 609 'string-indexof-2': [PASS, TIMEOUT], |
610 | |
611 # TODO(rmcilroy,4680): Arm specific timeouts. | |
612 'compiler/osr-one': [PASS, NO_IGNITION], | |
613 'compiler/osr-two': [PASS, NO_IGNITION], | |
614 'regress/regress-1257': [PASS, NO_IGNITION], | |
536 }], # 'arch == arm or arch == android_arm' | 615 }], # 'arch == arm or arch == android_arm' |
537 | 616 |
538 ############################################################################## | 617 ############################################################################## |
539 ['arch == mipsel or arch == mips', { | 618 ['arch == mipsel or arch == mips', { |
540 | 619 |
541 # Slow tests which times out in debug mode. | 620 # Slow tests which times out in debug mode. |
542 'try': [PASS, ['mode == debug', SKIP]], | 621 'try': [PASS, ['mode == debug', SKIP]], |
543 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 622 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
544 'array-constructor': [PASS, ['mode == debug', SKIP]], | 623 'array-constructor': [PASS, ['mode == debug', SKIP]], |
545 | 624 |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
845 ############################################################################## | 924 ############################################################################## |
846 ['gcov_coverage', { | 925 ['gcov_coverage', { |
847 # Tests taking too long. | 926 # Tests taking too long. |
848 'array-functions-prototype-misc': [SKIP], | 927 'array-functions-prototype-misc': [SKIP], |
849 | 928 |
850 # Stack overflow. | 929 # Stack overflow. |
851 'big-array-literal': [SKIP], | 930 'big-array-literal': [SKIP], |
852 }], # 'gcov_coverage' | 931 }], # 'gcov_coverage' |
853 | 932 |
854 ] | 933 ] |
OLD | NEW |