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 "bin/builtin.h" | 9 #include "bin/builtin.h" |
6 #include "include/dart_api.h" | 10 #include "include/dart_api.h" |
7 #include "include/dart_debugger_api.h" | 11 #include "include/dart_debugger_api.h" |
8 #include "include/dart_mirrors_api.h" | 12 #include "include/dart_mirrors_api.h" |
9 #include "include/dart_native_api.h" | 13 #include "include/dart_native_api.h" |
10 #include "platform/assert.h" | 14 #include "platform/assert.h" |
11 #include "platform/json.h" | 15 #include "platform/json.h" |
12 #include "platform/utils.h" | 16 #include "platform/utils.h" |
13 #include "vm/class_finalizer.h" | 17 #include "vm/class_finalizer.h" |
14 #include "vm/dart_api_impl.h" | 18 #include "vm/dart_api_impl.h" |
(...skipping 8072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8087 NewString("main"), | 8091 NewString("main"), |
8088 1, | 8092 1, |
8089 dart_args); | 8093 dart_args); |
8090 int64_t value = 0; | 8094 int64_t value = 0; |
8091 result = Dart_IntegerToInt64(result, &value); | 8095 result = Dart_IntegerToInt64(result, &value); |
8092 EXPECT_VALID(result); | 8096 EXPECT_VALID(result); |
8093 EXPECT_EQ(6, value); | 8097 EXPECT_EQ(6, value); |
8094 } | 8098 } |
8095 | 8099 |
8096 } // namespace dart | 8100 } // namespace dart |
| 8101 |
| 8102 #endif // !defined(TARGET_ARCH_ARM64) |
OLD | NEW |