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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
251 | 251 |
252 }], # 'system == windows' | 252 }], # 'system == windows' |
253 | 253 |
254 ############################################################################## | 254 ############################################################################## |
255 ['system == macos', { | 255 ['system == macos', { |
256 | 256 |
257 # BUG(3125). | 257 # BUG(3125). |
258 'test-debug/DebugGetLoadedScripts': [PASS, FLAKY], | 258 'test-debug/DebugGetLoadedScripts': [PASS, FLAKY], |
259 'test-debug/DebugStepLinear': [PASS, FLAKY], | 259 'test-debug/DebugStepLinear': [PASS, FLAKY], |
260 'test-debug/DebuggerClearMessageHandler': [PASS, FLAKY], | 260 'test-debug/DebuggerClearMessageHandler': [PASS, FLAKY], |
261 | |
262 # TODO(alph): add support for MacOS. | |
263 'test-sampler-api/*': [SKIP], | |
264 | |
261 }], # 'system == macos' | 265 }], # 'system == macos' |
262 | 266 |
263 ############################################################################## | 267 ############################################################################## |
264 ['arch == arm', { | 268 ['arch == arm', { |
265 | 269 |
266 # BUG(355): Test crashes on ARM. | 270 # BUG(355): Test crashes on ARM. |
267 'test-log/ProfLazyMode': [SKIP], | 271 'test-log/ProfLazyMode': [SKIP], |
268 | 272 |
269 # BUG(1075): Unresolved crashes. | 273 # BUG(1075): Unresolved crashes. |
270 'test-serialize/Deserialize': [SKIP], | 274 'test-serialize/Deserialize': [SKIP], |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
338 # Tests crash as there is no /tmp directory in Android. | 342 # Tests crash as there is no /tmp directory in Android. |
339 'test-log/LogAccessorCallbacks': [SKIP], | 343 'test-log/LogAccessorCallbacks': [SKIP], |
340 'test-log/LogCallbacks': [SKIP], | 344 'test-log/LogCallbacks': [SKIP], |
341 'test-log/ProfLazyMode': [SKIP], | 345 'test-log/ProfLazyMode': [SKIP], |
342 | 346 |
343 # platform-tls.h does not contain an ANDROID-related header. | 347 # platform-tls.h does not contain an ANDROID-related header. |
344 'test-platform-tls/FastTLS': [SKIP], | 348 'test-platform-tls/FastTLS': [SKIP], |
345 | 349 |
346 # This test times out. | 350 # This test times out. |
347 'test-threads/ThreadJoinSelf': [SKIP], | 351 'test-threads/ThreadJoinSelf': [SKIP], |
352 | |
353 # TODO(alph): Android doesn't seem to support getcontext, so disable the test. | |
354 # The test could be implemented with POSIX signals. | |
355 'test-sampler-api/*': [SKIP], | |
gholap
2014/09/23 05:39:18
https://codereview.chromium.org/588623002/ uses PO
alph
2014/09/23 07:30:46
Let's address arm tests in a separate patch.
| |
356 | |
348 }], # 'arch == android_arm or arch == android_ia32' | 357 }], # 'arch == android_arm or arch == android_ia32' |
349 | 358 |
350 ############################################################################## | 359 ############################################################################## |
351 ['arch == nacl_ia32 or arch == nacl_x64', { | 360 ['arch == nacl_ia32 or arch == nacl_x64', { |
352 | 361 |
353 # NaCl builds have problems with threaded tests since Pepper_28. | 362 # NaCl builds have problems with threaded tests since Pepper_28. |
354 # V8 Issue 2786 | 363 # V8 Issue 2786 |
355 'test-api/Threading1': [SKIP], | 364 'test-api/Threading1': [SKIP], |
356 'test-lockers/MultithreadedParallelIsolates': [SKIP], | 365 'test-lockers/MultithreadedParallelIsolates': [SKIP], |
357 'test-lockers/ExtensionsRegistration': [SKIP], | 366 'test-lockers/ExtensionsRegistration': [SKIP], |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
446 'test-api/Float32Array' : [SKIP], | 455 'test-api/Float32Array' : [SKIP], |
447 'test-api/Float64Array' : [SKIP], | 456 'test-api/Float64Array' : [SKIP], |
448 'test-api/Regress2333' : [SKIP], | 457 'test-api/Regress2333' : [SKIP], |
449 'test-alloc/StressHandles' : [SKIP], | 458 'test-alloc/StressHandles' : [SKIP], |
450 'test-alloc/StressJS' : [SKIP], | 459 'test-alloc/StressJS' : [SKIP], |
451 'test-accessors/HandleScopePop' : [SKIP], | 460 'test-accessors/HandleScopePop' : [SKIP], |
452 'test-accessors/Gc' : [SKIP], | 461 'test-accessors/Gc' : [SKIP], |
453 | 462 |
454 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 463 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
455 ] | 464 ] |
OLD | NEW |