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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 ############################################################################## | 491 ############################################################################## |
492 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 492 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
493 | 493 |
494 # Pass but take too long with the simulator. | 494 # Pass but take too long with the simulator. |
495 'test-api/Threading1': [PASS, SLOW], | 495 'test-api/Threading1': [PASS, SLOW], |
496 'test-api/Threading2': [PASS, SLOW], | 496 'test-api/Threading2': [PASS, SLOW], |
497 'test-api/ExternalArrays': [PASS, SLOW], | 497 'test-api/ExternalArrays': [PASS, SLOW], |
498 | 498 |
499 }], # 'arch == ppc64 and simulator_run == True' | 499 }], # 'arch == ppc64 and simulator_run == True' |
500 | 500 |
| 501 ############################################################################## |
501 ['ignition == True', { | 502 ['ignition == True', { |
502 # TODO(yangguo,4690): Test failures in debugger tests. | 503 # TODO(yangguo,4690): Test failures in debugger tests. |
503 'test-debug/DebugStepLocals': [FAIL], | 504 'test-debug/DebugStepLocals': [FAIL], |
504 'test-debug/DebugStepKeyedLoadLoop': [FAIL], | 505 'test-debug/DebugStepKeyedLoadLoop': [FAIL], |
505 'test-debug/DebugStepKeyedStoreLoop': [FAIL], | 506 'test-debug/DebugStepKeyedStoreLoop': [FAIL], |
506 'test-debug/DebugStepIf': [FAIL], | 507 'test-debug/DebugStepIf': [FAIL], |
507 'test-debug/DebugStepNamedLoadLoop': [FAIL], | 508 'test-debug/DebugStepNamedLoadLoop': [FAIL], |
508 'test-debug/DebugStepDeclarations': [FAIL], | 509 'test-debug/DebugStepDeclarations': [FAIL], |
509 'test-debug/BreakPointConstructCallWithGC': [PASS, FAIL], | 510 'test-debug/BreakPointConstructCallWithGC': [PASS, FAIL], |
510 'test-debug/DebugStepNamedStoreLoop': [FAIL], | 511 'test-debug/DebugStepNamedStoreLoop': [FAIL], |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 'test-heap/Regress169209': [FAIL], | 588 'test-heap/Regress169209': [FAIL], |
588 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL], | 589 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL], |
589 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL], | 590 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL], |
590 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL], | 591 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL], |
591 'test-heap/CompilationCacheCachingBehavior': [FAIL], | 592 'test-heap/CompilationCacheCachingBehavior': [FAIL], |
592 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL], | 593 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL], |
593 'test-run-inlining/InlineTwice': [FAIL], | 594 'test-run-inlining/InlineTwice': [FAIL], |
594 'test-serialize/SerializeInternalReference': [FAIL, ['arch == arm or arch == a
rm64', PASS]], | 595 'test-serialize/SerializeInternalReference': [FAIL, ['arch == arm or arch == a
rm64', PASS]], |
595 }], # ignition == True | 596 }], # ignition == True |
596 | 597 |
597 ['ignition == True and arch == x64', { | |
598 # TODO(rmcilroy,4680): The function_data field should be a BytecodeArray on in
terpreter entry | |
599 'test-serialize/PerIsolateSnapshotBlobsOutdatedContextWithOverflow': [PASS, ['
mode == debug', FAIL]], | |
600 'test-serialize/PerIsolateSnapshotBlobsWithLocker': [PASS, ['mode == debug', F
AIL]], | |
601 'test-serialize/SnapshotBlobsStackOverflow': [PASS, ['mode == debug', FAIL]], | |
602 'test-serialize/PerIsolateSnapshotBlobs': [PASS, ['mode == debug', FAIL]], | |
603 'test-serialize/SerializationMemoryStats': [PASS, ['mode == debug', FAIL]], | |
604 | |
605 # TODO(rmcilroy,4680): Test assert errors. | |
606 'test-heap-profiler/HeapSnapshotSimd': [PASS, ['mode == debug', FAIL]], | |
607 'test-api/InitializeDefaultIsolateOnSecondaryThread1': [PASS, ['mode == debug'
, FAIL]], | |
608 }], | |
609 | |
610 ] | 598 ] |
OLD | NEW |