OLD | NEW |
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 "include/dart_debugger_api.h" | 9 #include "include/dart_debugger_api.h" |
6 #include "vm/dart_api_impl.h" | 10 #include "vm/dart_api_impl.h" |
7 #include "vm/dart_entry.h" | 11 #include "vm/dart_entry.h" |
8 #include "vm/debugger.h" | 12 #include "vm/debugger.h" |
9 #include "vm/globals.h" | 13 #include "vm/globals.h" |
10 #include "vm/message_handler.h" | 14 #include "vm/message_handler.h" |
11 #include "vm/object_id_ring.h" | 15 #include "vm/object_id_ring.h" |
12 #include "vm/os.h" | 16 #include "vm/os.h" |
13 #include "vm/port.h" | 17 #include "vm/port.h" |
14 #include "vm/service.h" | 18 #include "vm/service.h" |
(...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1320 EXPECT_SUBSTRING("\"type\":\"Profile\"", handler.msg()); | 1324 EXPECT_SUBSTRING("\"type\":\"Profile\"", handler.msg()); |
1321 | 1325 |
1322 service_msg = Eval(h_lib, "[port, ['profile'], ['tags'], ['hidden']]"); | 1326 service_msg = Eval(h_lib, "[port, ['profile'], ['tags'], ['hidden']]"); |
1323 Service::HandleIsolateMessage(isolate, service_msg); | 1327 Service::HandleIsolateMessage(isolate, service_msg); |
1324 handler.HandleNextMessage(); | 1328 handler.HandleNextMessage(); |
1325 // Expect error. | 1329 // Expect error. |
1326 EXPECT_SUBSTRING("\"type\":\"Error\"", handler.msg()); | 1330 EXPECT_SUBSTRING("\"type\":\"Error\"", handler.msg()); |
1327 } | 1331 } |
1328 | 1332 |
1329 } // namespace dart | 1333 } // namespace dart |
| 1334 |
| 1335 #endif // !defined(TARGET_ARCH_ARM64) |
OLD | NEW |