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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ['ignition == True', { | 501 ['ignition == True', { |
502 # TODO(yangguo,4690): Enable debugger support for Ignition. | 502 # TODO(yangguo,4690): Test failures in debugger tests. |
503 'test-debug/*' : [SKIP], | 503 'test-debug/DebugStepLocals': [FAIL], |
| 504 'test-debug/DebugStepKeyedLoadLoop': [FAIL], |
| 505 'test-debug/DebugStepKeyedStoreLoop': [FAIL], |
| 506 'test-debug/DebugStepIf': [FAIL], |
| 507 'test-debug/DebugStepNamedLoadLoop': [FAIL], |
| 508 'test-debug/DebugStepDeclarations': [FAIL], |
| 509 'test-debug/BreakPointConstructCallWithGC': [PASS, FAIL], |
| 510 'test-debug/DebugStepNamedStoreLoop': [FAIL], |
| 511 'test-debug/DebugStepLinearMixedICs': [FAIL], |
| 512 'test-debug/DebugStepSwitch': [FAIL], |
| 513 'test-debug/DebugStepWhile': [FAIL], |
| 514 'test-debug/DebugStepFor': [FAIL], |
| 515 'test-debug/DebugStepForContinue': [FAIL], |
| 516 'test-debug/DebugStepForIn': [FAIL], |
| 517 'test-debug/DebugStepDoWhile': [FAIL], |
| 518 'test-debug/DebugConditional': [FAIL], |
| 519 'test-debug/DebugStepForBreak': [FAIL], |
| 520 'test-debug/DebugStepWith': [FAIL], |
| 521 'test-debug/DebugStepFunctionApply': [FAIL], |
| 522 'test-debug/StepInOutBranch': [FAIL], |
| 523 'test-debug/DebugStepFunctionCall': [FAIL], |
504 | 524 |
505 # TODO(yangguo,4690): Required DebuggerStatement support. | 525 # TODO(yangguo,4690): Required DebuggerStatement support. |
506 'test-profile-generator/BailoutReason': [FAIL], | 526 'test-profile-generator/BailoutReason': [FAIL], |
507 | 527 |
508 # TODO(rmcilroy,4680): Check failed: toplevel_test_code_event_found. | 528 # TODO(rmcilroy,4680): Check failed: toplevel_test_code_event_found. |
509 'test-serialize/SerializeToplevelIsolates': [FAIL], | 529 'test-serialize/SerializeToplevelIsolates': [FAIL], |
510 | 530 |
511 # BUG(4333). Function name inferrer does not work for ES6 clases. | 531 # BUG(4333). Function name inferrer does not work for ES6 clases. |
512 'test-func-name-inference/UpperCaseClass': [TIMEOUT], | 532 'test-func-name-inference/UpperCaseClass': [TIMEOUT], |
513 'test-func-name-inference/LowerCaseClass': [TIMEOUT], | 533 'test-func-name-inference/LowerCaseClass': [TIMEOUT], |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 'test-serialize/SnapshotBlobsStackOverflow': [PASS, ['mode == debug', FAIL]], | 609 'test-serialize/SnapshotBlobsStackOverflow': [PASS, ['mode == debug', FAIL]], |
590 'test-serialize/PerIsolateSnapshotBlobs': [PASS, ['mode == debug', FAIL]], | 610 'test-serialize/PerIsolateSnapshotBlobs': [PASS, ['mode == debug', FAIL]], |
591 'test-serialize/SerializationMemoryStats': [PASS, ['mode == debug', FAIL]], | 611 'test-serialize/SerializationMemoryStats': [PASS, ['mode == debug', FAIL]], |
592 | 612 |
593 # TODO(rmcilroy,4680): Test assert errors. | 613 # TODO(rmcilroy,4680): Test assert errors. |
594 'test-heap-profiler/HeapSnapshotSimd': [PASS, ['mode == debug', FAIL]], | 614 'test-heap-profiler/HeapSnapshotSimd': [PASS, ['mode == debug', FAIL]], |
595 'test-api/InitializeDefaultIsolateOnSecondaryThread1': [PASS, ['mode == debug'
, FAIL]], | 615 'test-api/InitializeDefaultIsolateOnSecondaryThread1': [PASS, ['mode == debug'
, FAIL]], |
596 }], | 616 }], |
597 | 617 |
598 ] | 618 ] |
OLD | NEW |