| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 28 matching lines...) Expand all Loading... |
| 39 'fast/js/regexp-stack-overflow': [PASS, FAIL], | 39 'fast/js/regexp-stack-overflow': [PASS, FAIL], |
| 40 }], # ALWAYS | 40 }], # ALWAYS |
| 41 ['mode == debug', { | 41 ['mode == debug', { |
| 42 # Too slow in debug mode. | 42 # Too slow in debug mode. |
| 43 'dfg-int-overflow-in-loop': [SKIP], | 43 'dfg-int-overflow-in-loop': [SKIP], |
| 44 'dfg-double-vote-fuzz': [SKIP], | 44 'dfg-double-vote-fuzz': [SKIP], |
| 45 'reentrant-caching': [SKIP], | 45 'reentrant-caching': [SKIP], |
| 46 'sort-large-array': [SKIP], | 46 'sort-large-array': [SKIP], |
| 47 # Too slow with --enable-slow-asserts. | 47 # Too slow with --enable-slow-asserts. |
| 48 'array-iterate-backwards': [SKIP], | 48 'array-iterate-backwards': [SKIP], |
| 49 |
| 50 # Ignition TODO(rmcilroy). |
| 51 'array-reduce': [PASS, ['no_snap', NO_IGNITION]], |
| 52 'array-reduceRight': [PASS, ['no_snap', NO_IGNITION]], |
| 49 }], # 'mode == debug' | 53 }], # 'mode == debug' |
| 50 ['simulator', { | 54 ['simulator', { |
| 51 # Skip tests that timeout with turbofan. | 55 # Skip tests that timeout with turbofan. |
| 52 'array-iterate-backwards': [PASS, NO_VARIANTS], | 56 'array-iterate-backwards': [PASS, NO_VARIANTS], |
| 53 'function-apply-aliased': [SKIP], | 57 'function-apply-aliased': [SKIP], |
| 54 | 58 |
| 55 # Skip tests that are too slow for simulators. | 59 # Skip tests that are too slow for simulators. |
| 56 'dfg-int-overflow-in-loop': [SKIP], | 60 'dfg-int-overflow-in-loop': [SKIP], |
| 57 }], # 'simulator' | 61 }], # 'simulator' |
| 58 ['arch == arm64 and simulator_run == True', { | 62 ['arch == arm64 and simulator_run == True', { |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 | 120 |
| 117 ############################################################################## | 121 ############################################################################## |
| 118 ['gcov_coverage', { | 122 ['gcov_coverage', { |
| 119 # Tests taking too long or getting too large call stacks. | 123 # Tests taking too long or getting too large call stacks. |
| 120 'fast/js/excessive-comma-usage': [SKIP], | 124 'fast/js/excessive-comma-usage': [SKIP], |
| 121 'run-json-stringify': [SKIP], | 125 'run-json-stringify': [SKIP], |
| 122 }], # 'gcov_coverage' | 126 }], # 'gcov_coverage' |
| 123 | 127 |
| 124 ############################################################################## | 128 ############################################################################## |
| 125 ] | 129 ] |
| OLD | NEW |