| 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 # Pass but take too long with the simulator. | 507 # Pass but take too long with the simulator. |
| 508 'test-api/Threading1': [PASS, SLOW], | 508 'test-api/Threading1': [PASS, SLOW], |
| 509 'test-api/Threading2': [PASS, SLOW], | 509 'test-api/Threading2': [PASS, SLOW], |
| 510 'test-api/ExternalArrays': [PASS, SLOW], | 510 'test-api/ExternalArrays': [PASS, SLOW], |
| 511 | 511 |
| 512 }], # 'arch == ppc64 and simulator_run == True' | 512 }], # 'arch == ppc64 and simulator_run == True' |
| 513 | 513 |
| 514 ############################################################################## | 514 ############################################################################## |
| 515 ['ignition == True', { | 515 ['ignition == True', { |
| 516 # TODO(yangguo,4690): Test failures in debugger tests. | 516 # TODO(yangguo,4690): Test failures in debugger tests. |
| 517 'test-debug/DebugStepKeyedLoadLoop': [FAIL], | |
| 518 'test-debug/DebugStepKeyedStoreLoop': [FAIL], | |
| 519 'test-debug/DebugStepNamedLoadLoop': [FAIL], | 517 'test-debug/DebugStepNamedLoadLoop': [FAIL], |
| 520 'test-debug/BreakPointConstructCallWithGC': [PASS, FAIL], | |
| 521 'test-debug/DebugStepNamedStoreLoop': [FAIL], | |
| 522 'test-debug/DebugStepSwitch': [FAIL], | |
| 523 'test-debug/DebugStepWhile': [FAIL], | |
| 524 'test-debug/DebugStepFor': [FAIL], | |
| 525 'test-debug/DebugStepForContinue': [FAIL], | |
| 526 'test-debug/DebugStepForIn': [FAIL], | 518 'test-debug/DebugStepForIn': [FAIL], |
| 527 'test-debug/DebugStepDoWhile': [FAIL], | 519 'test-debug/DebugStepDoWhile': [FAIL], |
| 528 'test-debug/DebugConditional': [FAIL], | 520 'test-debug/DebugConditional': [FAIL], |
| 521 'test-debug/DebugStepForContinue': [FAIL], |
| 522 'test-debug/DebugStepKeyedStoreLoop': [FAIL], |
| 529 'test-debug/DebugStepForBreak': [FAIL], | 523 'test-debug/DebugStepForBreak': [FAIL], |
| 530 'test-debug/DebugStepWith': [FAIL], | 524 'test-debug/DebugStepKeyedLoadLoop': [FAIL], |
| 525 'test-debug/DebugStepNamedStoreLoop': [FAIL], |
| 531 | 526 |
| 532 # BUG(4333). Function name inferrer does not work for ES6 clases. | 527 # BUG(4333). Function name inferrer does not work for ES6 clases. |
| 533 'test-func-name-inference/UpperCaseClass': [TIMEOUT], | 528 'test-func-name-inference/UpperCaseClass': [TIMEOUT], |
| 534 'test-func-name-inference/LowerCaseClass': [TIMEOUT], | 529 'test-func-name-inference/LowerCaseClass': [TIMEOUT], |
| 535 | 530 |
| 536 # TODO(rmcilroy,4681): Requires support for generators. | 531 # TODO(rmcilroy,4681): Requires support for generators. |
| 537 'test-inobject-slack-tracking/JSGeneratorObjectBasic': [FAIL], | 532 'test-inobject-slack-tracking/JSGeneratorObjectBasic': [FAIL], |
| 538 'test-inobject-slack-tracking/JSGeneratorObjectBasicNoInlineNew': [FAIL], | 533 'test-inobject-slack-tracking/JSGeneratorObjectBasicNoInlineNew': [FAIL], |
| 539 'test-api/IsGeneratorFunctionOrObject': [FAIL], | 534 'test-api/IsGeneratorFunctionOrObject': [FAIL], |
| 540 | 535 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 566 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL], | 561 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL], |
| 567 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL], | 562 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL], |
| 568 'test-heap/CompilationCacheCachingBehavior': [FAIL], | 563 'test-heap/CompilationCacheCachingBehavior': [FAIL], |
| 569 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL], | 564 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL], |
| 570 'test-run-inlining/InlineTwice': [FAIL], | 565 'test-run-inlining/InlineTwice': [FAIL], |
| 571 'test-serialize/SerializeInternalReference': [FAIL, ['arch == arm or arch == a
rm64', PASS]], | 566 'test-serialize/SerializeInternalReference': [FAIL, ['arch == arm or arch == a
rm64', PASS]], |
| 572 | 567 |
| 573 }], # ignition == True | 568 }], # ignition == True |
| 574 | 569 |
| 575 ] | 570 ] |
| OLD | NEW |