Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(996)

Side by Side Diff: test/cctest/cctest.status

Issue 1744123003: [debugger] fix break locations for assignments and return. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixes and addressed comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/parsing/rewriter.cc ('k') | test/cctest/test-debug.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 # Pass but take too long with the simulator. 495 # Pass but take too long with the simulator.
496 'test-api/Threading1': [PASS, SLOW], 496 'test-api/Threading1': [PASS, SLOW],
497 'test-api/Threading2': [PASS, SLOW], 497 'test-api/Threading2': [PASS, SLOW],
498 'test-api/ExternalArrays': [PASS, SLOW], 498 'test-api/ExternalArrays': [PASS, SLOW],
499 499
500 }], # 'arch == ppc64 and simulator_run == True' 500 }], # 'arch == ppc64 and simulator_run == True'
501 501
502 ############################################################################## 502 ##############################################################################
503 ['ignition == True', { 503 ['ignition == True', {
504 # TODO(yangguo,4690): Test failures in debugger tests. 504 # TODO(yangguo,4690): Test failures in debugger tests.
505 'test-debug/DebugStepLocals': [FAIL],
506 'test-debug/DebugStepKeyedLoadLoop': [FAIL], 505 'test-debug/DebugStepKeyedLoadLoop': [FAIL],
507 'test-debug/DebugStepKeyedStoreLoop': [FAIL], 506 'test-debug/DebugStepKeyedStoreLoop': [FAIL],
508 'test-debug/DebugStepIf': [FAIL], 507 'test-debug/DebugStepIf': [FAIL],
509 'test-debug/DebugStepNamedLoadLoop': [FAIL], 508 'test-debug/DebugStepNamedLoadLoop': [FAIL],
510 'test-debug/DebugStepDeclarations': [FAIL],
511 'test-debug/BreakPointConstructCallWithGC': [PASS, FAIL], 509 'test-debug/BreakPointConstructCallWithGC': [PASS, FAIL],
512 'test-debug/DebugStepNamedStoreLoop': [FAIL], 510 'test-debug/DebugStepNamedStoreLoop': [FAIL],
513 'test-debug/DebugStepLinearMixedICs': [FAIL],
514 'test-debug/DebugStepSwitch': [FAIL], 511 'test-debug/DebugStepSwitch': [FAIL],
515 'test-debug/DebugStepWhile': [FAIL], 512 'test-debug/DebugStepWhile': [FAIL],
516 'test-debug/DebugStepFor': [FAIL], 513 'test-debug/DebugStepFor': [FAIL],
517 'test-debug/DebugStepForContinue': [FAIL], 514 'test-debug/DebugStepForContinue': [FAIL],
518 'test-debug/DebugStepForIn': [FAIL], 515 'test-debug/DebugStepForIn': [FAIL],
519 'test-debug/DebugStepDoWhile': [FAIL], 516 'test-debug/DebugStepDoWhile': [FAIL],
520 'test-debug/DebugConditional': [FAIL], 517 'test-debug/DebugConditional': [FAIL],
521 'test-debug/DebugStepForBreak': [FAIL], 518 'test-debug/DebugStepForBreak': [FAIL],
522 'test-debug/DebugStepWith': [FAIL], 519 'test-debug/DebugStepWith': [FAIL],
523 'test-debug/DebugStepFunctionApply': [FAIL], 520 'test-debug/DebugStepFunctionApply': [FAIL],
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL], 560 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL],
564 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL], 561 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL],
565 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL], 562 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL],
566 'test-heap/CompilationCacheCachingBehavior': [FAIL], 563 'test-heap/CompilationCacheCachingBehavior': [FAIL],
567 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL], 564 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL],
568 'test-run-inlining/InlineTwice': [FAIL], 565 'test-run-inlining/InlineTwice': [FAIL],
569 'test-serialize/SerializeInternalReference': [FAIL, ['arch == arm or arch == a rm64', PASS]], 566 'test-serialize/SerializeInternalReference': [FAIL, ['arch == arm or arch == a rm64', PASS]],
570 }], # ignition == True 567 }], # ignition == True
571 568
572 ] 569 ]
OLDNEW
« no previous file with comments | « src/parsing/rewriter.cc ('k') | test/cctest/test-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698