OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 "platform/assert.h" | 10 #include "platform/assert.h" |
7 #include "vm/bigint_operations.h" | 11 #include "vm/bigint_operations.h" |
8 #include "vm/class_finalizer.h" | 12 #include "vm/class_finalizer.h" |
9 #include "vm/dart_api_impl.h" | 13 #include "vm/dart_api_impl.h" |
10 #include "vm/dart_api_message.h" | 14 #include "vm/dart_api_message.h" |
11 #include "vm/dart_api_state.h" | 15 #include "vm/dart_api_state.h" |
12 #include "vm/flags.h" | 16 #include "vm/flags.h" |
13 #include "vm/snapshot.h" | 17 #include "vm/snapshot.h" |
14 #include "vm/symbols.h" | 18 #include "vm/symbols.h" |
(...skipping 2670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2685 result = Dart_RunLoop(); | 2689 result = Dart_RunLoop(); |
2686 EXPECT(Dart_IsError(result)); | 2690 EXPECT(Dart_IsError(result)); |
2687 EXPECT(Dart_ErrorHasException(result)); | 2691 EXPECT(Dart_ErrorHasException(result)); |
2688 EXPECT_SUBSTRING("Exception: nulltruefalse123456æøå3.14[]100123456789\n", | 2692 EXPECT_SUBSTRING("Exception: nulltruefalse123456æøå3.14[]100123456789\n", |
2689 Dart_GetError(result)); | 2693 Dart_GetError(result)); |
2690 | 2694 |
2691 Dart_ExitScope(); | 2695 Dart_ExitScope(); |
2692 } | 2696 } |
2693 | 2697 |
2694 } // namespace dart | 2698 } // namespace dart |
| 2699 |
| 2700 #endif // !defined(TARGET_ARCH_ARM64) |
OLD | NEW |