| 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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 # TODO(rmcilroy,5038): Crashes in Deoptimizer::PatchCodeForDeoptimization on | 790 # TODO(rmcilroy,5038): Crashes in Deoptimizer::PatchCodeForDeoptimization on |
| 791 # nosnap builds when --stress-opt and --turbo-from-bytecode is enabled. | 791 # nosnap builds when --stress-opt and --turbo-from-bytecode is enabled. |
| 792 'harmony/generators-turbo': [PASS, FAST_VARIANTS], | 792 'harmony/generators-turbo': [PASS, FAST_VARIANTS], |
| 793 'regress/regress-crbug-352058': [SKIP], | 793 'regress/regress-crbug-352058': [SKIP], |
| 794 | 794 |
| 795 # TODO(jarin): No truncations on CheckFloat64Hole. | 795 # TODO(jarin): No truncations on CheckFloat64Hole. |
| 796 'getters-on-elements': [SKIP], | 796 'getters-on-elements': [SKIP], |
| 797 | 797 |
| 798 # TODO(rmcilroy): Flaky OOM. | 798 # TODO(rmcilroy): Flaky OOM. |
| 799 'unicodelctest-no-optimization': [SKIP], | 799 'unicodelctest-no-optimization': [SKIP], |
| 800 |
| 801 # TODO(bmeurer): We treat PREMONOMORPHIC load/store ICs like UNINITIALIZED |
| 802 # and add a soft deopt, which makes this test fail. |
| 803 'compiler/manual-concurrent-recompile': [FAIL], |
| 800 }], # variant == ignition_turbofan | 804 }], # variant == ignition_turbofan |
| 801 | 805 |
| 802 ['variant == ignition_turbofan and arch == arm64', { | 806 ['variant == ignition_turbofan and arch == arm64', { |
| 803 # TODO(rmcilroy,4680): Arm64 specific timeouts. | 807 # TODO(rmcilroy,4680): Arm64 specific timeouts. |
| 804 'asm/construct-double': [SKIP], | 808 'asm/construct-double': [SKIP], |
| 805 'compiler/osr-one': [SKIP], | 809 'compiler/osr-one': [SKIP], |
| 806 'compiler/osr-two': [SKIP], | 810 'compiler/osr-two': [SKIP], |
| 807 'wasm/asm-wasm-i32': [SKIP], | 811 'wasm/asm-wasm-i32': [SKIP], |
| 808 'wasm/asm-wasm-u32': [SKIP], | 812 'wasm/asm-wasm-u32': [SKIP], |
| 809 }], # variant == ignition_turbofan and arch == arm64 | 813 }], # variant == ignition_turbofan and arch == arm64 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 831 ############################################################################## | 835 ############################################################################## |
| 832 ['gcov_coverage', { | 836 ['gcov_coverage', { |
| 833 # Tests taking too long. | 837 # Tests taking too long. |
| 834 'array-functions-prototype-misc': [SKIP], | 838 'array-functions-prototype-misc': [SKIP], |
| 835 | 839 |
| 836 # Stack overflow. | 840 # Stack overflow. |
| 837 'big-array-literal': [SKIP], | 841 'big-array-literal': [SKIP], |
| 838 }], # 'gcov_coverage' | 842 }], # 'gcov_coverage' |
| 839 | 843 |
| 840 ] | 844 ] |
| OLD | NEW |