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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 'array-iterate-backwards': [SKIP], | 46 'array-iterate-backwards': [SKIP], |
47 }], # 'mode == debug' | 47 }], # 'mode == debug' |
48 ['simulator', { | 48 ['simulator', { |
49 # Skip tests that timeout with turbofan. | 49 # Skip tests that timeout with turbofan. |
50 'array-iterate-backwards': [PASS, NO_VARIANTS], | 50 'array-iterate-backwards': [PASS, NO_VARIANTS], |
51 'function-apply-aliased': [SKIP], | 51 'function-apply-aliased': [SKIP], |
52 | 52 |
53 # Skip tests that are too slow for simulators. | 53 # Skip tests that are too slow for simulators. |
54 'dfg-int-overflow-in-loop': [SKIP], | 54 'dfg-int-overflow-in-loop': [SKIP], |
55 }], # 'simulator' | 55 }], # 'simulator' |
56 ['arch == arm64 and simulator_run == True', { | 56 ['arch == arm64 and simulator_run', { |
57 'dfg-int-overflow-in-loop': [SKIP], | 57 'dfg-int-overflow-in-loop': [SKIP], |
58 }], # 'arch == arm64 and simulator_run == True' | 58 }], # 'arch == arm64 and simulator_run' |
59 ['dcheck_always_on == True and (arch == arm or arch == arm64)', { | 59 ['dcheck_always_on == True and (arch == arm or arch == arm64)', { |
60 # Doesn't work with gcc 4.6 on arm or arm64 for some reason. | 60 # Doesn't work with gcc 4.6 on arm or arm64 for some reason. |
61 'reentrant-caching': [SKIP], | 61 'reentrant-caching': [SKIP], |
62 }], # 'dcheck_always_on == True and (arch == arm or arch == arm64)' | 62 }], # 'dcheck_always_on == True and (arch == arm or arch == arm64)' |
63 ['arch == mips', { | 63 ['arch == mips', { |
64 # Too slow for mips big-endian boards on bots (no FPU). | 64 # Too slow for mips big-endian boards on bots (no FPU). |
65 'dfg-int-overflow-in-loop': [SKIP], | 65 'dfg-int-overflow-in-loop': [SKIP], |
66 }], # 'arch == mips' | 66 }], # 'arch == mips' |
67 ['(arch == ppc or arch == ppc64) and simulator_run == True', { | 67 ['(arch == ppc or arch == ppc64) and simulator_run', { |
68 # Too slow. | 68 # Too slow. |
69 'dfg-int-overflow-in-loop': [SKIP], | 69 'dfg-int-overflow-in-loop': [SKIP], |
70 }], # 'arch == ppc or arch == ppc64' | 70 }], # 'arch == ppc or arch == ppc64' |
71 ['arch == s390 or arch == s390x', { | 71 ['arch == s390 or arch == s390x', { |
72 # Too slow. | 72 # Too slow. |
73 'dfg-int-overflow-in-loop': [SKIP], | 73 'dfg-int-overflow-in-loop': [SKIP], |
74 }], # 'arch == s390 or arch == s390x' | 74 }], # 'arch == s390 or arch == s390x' |
75 ['arch == x87', { | 75 ['arch == x87', { |
76 # Too slow. | 76 # Too slow. |
77 'dfg-negative-array-index': [SKIP], | 77 'dfg-negative-array-index': [SKIP], |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 '*': [SKIP], | 126 '*': [SKIP], |
127 }], # variant == wasm_traps | 127 }], # variant == wasm_traps |
128 | 128 |
129 ############################################################################## | 129 ############################################################################## |
130 ['no_i18n == True', { | 130 ['no_i18n == True', { |
131 'fast/js/string-capitalization': [FAIL], | 131 'fast/js/string-capitalization': [FAIL], |
132 }], # variant == wasm_traps | 132 }], # variant == wasm_traps |
133 | 133 |
134 ############################################################################## | 134 ############################################################################## |
135 ] | 135 ] |
OLD | NEW |