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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 | 442 |
443 # BUG(v8:4754). | 443 # BUG(v8:4754). |
444 'debug-referenced-by': [PASS, NO_VARIANTS], | 444 'debug-referenced-by': [PASS, NO_VARIANTS], |
445 | 445 |
446 # BUG(v8:4779): Crashes flakily with stress mode on arm64. | 446 # BUG(v8:4779): Crashes flakily with stress mode on arm64. |
447 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], | 447 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], |
448 | 448 |
449 # TODO(oth,4680): failures from the bots. | 449 # TODO(oth,4680): failures from the bots. |
450 'ignition/elided-instruction': [PASS, NO_IGNITION], | 450 'ignition/elided-instruction': [PASS, NO_IGNITION], |
451 'regress/regress-269': [PASS, NO_IGNITION], | 451 'regress/regress-269': [PASS, NO_IGNITION], |
452 | |
453 # TODO(yangguo,4961): issues with the compiler pipeline. | |
454 'es6/typedarray-copywithin': [PASS, NO_IGNITION], | |
455 'es6/block-conflicts': [PASS, NO_IGNITION], | |
456 'es6/block-conflicts-sloppy': [PASS, NO_IGNITION], | |
457 'mul-exhaustive-part10': [PASS, NO_IGNITION], | |
458 }], # 'gc_stress == True' | 452 }], # 'gc_stress == True' |
459 | 453 |
460 ############################################################################## | 454 ############################################################################## |
461 ['no_i18n == True and mode == debug', { | 455 ['no_i18n == True and mode == debug', { |
462 # Tests too slow for no18n debug. | 456 # Tests too slow for no18n debug. |
463 'regress/regress-1200351': [SKIP], | 457 'regress/regress-1200351': [SKIP], |
464 }], # 'no_i18n == True and mode == debug' | 458 }], # 'no_i18n == True and mode == debug' |
465 | 459 |
466 ############################################################################## | 460 ############################################################################## |
467 ['byteorder == big', { | 461 ['byteorder == big', { |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
944 'regress/regress-deep-proto': [SKIP], | 938 'regress/regress-deep-proto': [SKIP], |
945 'try': [SKIP], | 939 'try': [SKIP], |
946 # Too slow for interpreter and msan. | 940 # Too slow for interpreter and msan. |
947 'es6/tail-call-megatest*': [SKIP], | 941 'es6/tail-call-megatest*': [SKIP], |
948 }], # (ignition or ignition_turbofan) and msan | 942 }], # (ignition or ignition_turbofan) and msan |
949 | 943 |
950 ['(ignition or ignition_turbofan) and gc_stress == True', { | 944 ['(ignition or ignition_turbofan) and gc_stress == True', { |
951 # TODO(oth,4680): failures from the bots. | 945 # TODO(oth,4680): failures from the bots. |
952 'ignition/elided-instruction': [SKIP], | 946 'ignition/elided-instruction': [SKIP], |
953 'regress/regress-269': [SKIP], | 947 'regress/regress-269': [SKIP], |
954 # TODO(yangguo,4961): issues with the compiler pipeline. | |
955 'es6/typedarray-copywithin': [SKIP], | |
956 'es6/block-conflicts': [SKIP], | |
957 'es6/block-conflicts-sloppy': [SKIP], | |
958 'mul-exhaustive-part10': [SKIP], | |
959 }], # (ignition or ignition_turbofan) and gc_stress == True | 948 }], # (ignition or ignition_turbofan) and gc_stress == True |
960 | 949 |
961 ['ignition == False and ignition_turbofan == False', { | 950 ['ignition == False and ignition_turbofan == False', { |
962 # Debugger test cases that pass with full-codegen, but not ignition. | 951 # Debugger test cases that pass with full-codegen, but not ignition. |
963 # These differences between full-codegen and ignition are deliberate. | 952 # These differences between full-codegen and ignition are deliberate. |
964 'ignition/elided-instruction': [FAIL], | 953 'ignition/elided-instruction': [FAIL], |
965 }], # ignition == False and ignition_turbofan == False | 954 }], # ignition == False and ignition_turbofan == False |
966 | 955 |
967 ############################################################################## | 956 ############################################################################## |
968 ['gcov_coverage', { | 957 ['gcov_coverage', { |
969 # Tests taking too long. | 958 # Tests taking too long. |
970 'array-functions-prototype-misc': [SKIP], | 959 'array-functions-prototype-misc': [SKIP], |
971 | 960 |
972 # Stack overflow. | 961 # Stack overflow. |
973 'big-array-literal': [SKIP], | 962 'big-array-literal': [SKIP], |
974 }], # 'gcov_coverage' | 963 }], # 'gcov_coverage' |
975 | 964 |
976 ] | 965 ] |
OLD | NEW |