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

Side by Side Diff: runtime/vm/debugger_test.cc

Issue 221133002: Begins work on ARM64, first assembler test. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: adds files Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/debugger_arm64.cc ('k') | runtime/vm/disassembler_arm64.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 (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // TODO(zra): Remove when tests are ready to enable.
6 #include "platform/globals.h"
7 #if !defined(TARGET_ARCH_ARM64)
8
5 #include "vm/debugger.h" 9 #include "vm/debugger.h"
6 #include "vm/unit_test.h" 10 #include "vm/unit_test.h"
7 11
8 namespace dart { 12 namespace dart {
9 13
10 TEST_CASE(Debugger_PrintBreakpointsToJSONArray) { 14 TEST_CASE(Debugger_PrintBreakpointsToJSONArray) {
11 const char* kScriptChars = 15 const char* kScriptChars =
12 "main() {\n" 16 "main() {\n"
13 " var x = new StringBuffer();\n" 17 " var x = new StringBuffer();\n"
14 " x.add('won');\n" 18 " x.add('won');\n"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 // Set a breakpoint and run. 101 // Set a breakpoint and run.
98 debugger->SetBreakpointAtLine(url, 2); 102 debugger->SetBreakpointAtLine(url, 2);
99 Dart_Handle result = Dart_Invoke(lib, NewString("main"), 0, NULL); 103 Dart_Handle result = Dart_Invoke(lib, NewString("main"), 0, NULL);
100 EXPECT_VALID(result); 104 EXPECT_VALID(result);
101 EXPECT(Dart_IsString(result)); 105 EXPECT(Dart_IsString(result));
102 106
103 // We ran the code in InspectPausedEvent. 107 // We ran the code in InspectPausedEvent.
104 EXPECT(saw_paused_event); 108 EXPECT(saw_paused_event);
105 } 109 }
106 110
111 } // namespace dart
107 112
108 113 #endif // !defined(TARGET_ARCH_ARM64)
109 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/debugger_arm64.cc ('k') | runtime/vm/disassembler_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698