OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate | 204 # TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate |
205 # section to not overwrite the expectations for TestThatAlwaysFails. | 205 # section to not overwrite the expectations for TestThatAlwaysFails. |
206 ['no_snap == True and system == windows', { | 206 ['no_snap == True and system == windows', { |
207 # Windows doesn't support nosnap mode. | 207 # Windows doesn't support nosnap mode. |
208 'test-serialize/*': [SKIP], | 208 'test-serialize/*': [SKIP], |
209 }], # 'no_snap == True and system == windows' | 209 }], # 'no_snap == True and system == windows' |
210 | 210 |
211 ############################################################################## | 211 ############################################################################## |
212 ['system == windows', { | 212 ['system == windows', { |
213 | 213 |
214 # BUG(3005). | |
215 'test-alloc/CodeRange': [PASS, FAIL], | |
216 | |
217 # BUG(3331). Fails on windows. | 214 # BUG(3331). Fails on windows. |
218 'test-heap/NoWeakHashTableLeakWithIncrementalMarking': [SKIP], | 215 'test-heap/NoWeakHashTableLeakWithIncrementalMarking': [SKIP], |
219 | 216 |
220 }], # 'system == windows' | 217 }], # 'system == windows' |
221 | 218 |
222 ############################################################################## | 219 ############################################################################## |
223 ['system == macos', { | 220 ['system == macos', { |
224 | 221 |
225 # BUG(3125). | 222 # BUG(3125). |
226 'test-debug/DebugGetLoadedScripts': [PASS, FLAKY], | 223 'test-debug/DebugGetLoadedScripts': [PASS, FLAKY], |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 ############################################################################## | 419 ############################################################################## |
423 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 420 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
424 | 421 |
425 # Pass but take too long with the simulator. | 422 # Pass but take too long with the simulator. |
426 'test-api/Threading1': [PASS, SLOW], | 423 'test-api/Threading1': [PASS, SLOW], |
427 'test-api/Threading2': [PASS, SLOW], | 424 'test-api/Threading2': [PASS, SLOW], |
428 'test-api/ExternalArrays': [PASS, SLOW], | 425 'test-api/ExternalArrays': [PASS, SLOW], |
429 | 426 |
430 }], # 'arch == ppc64 and simulator_run == True' | 427 }], # 'arch == ppc64 and simulator_run == True' |
431 ] | 428 ] |
OLD | NEW |