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 "vm/dart_api_impl.h" | 9 #include "vm/dart_api_impl.h" |
6 #include "vm/dart_api_state.h" | 10 #include "vm/dart_api_state.h" |
7 #include "vm/intermediate_language.h" | 11 #include "vm/intermediate_language.h" |
8 #include "vm/object.h" | 12 #include "vm/object.h" |
9 #include "vm/unit_test.h" | 13 #include "vm/unit_test.h" |
10 | 14 |
11 namespace dart { | 15 namespace dart { |
12 | 16 |
13 RawField* LookupField(Dart_Handle library, const char* class_name, | 17 RawField* LookupField(Dart_Handle library, const char* class_name, |
14 const char* field_name) { | 18 const char* field_name) { |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 Dart_Handle result = Dart_Invoke(lib, NewString("main"), 0, NULL); | 267 Dart_Handle result = Dart_Invoke(lib, NewString("main"), 0, NULL); |
264 EXPECT_VALID(result); | 268 EXPECT_VALID(result); |
265 Field& f3 = Field::ZoneHandle(LookupField(lib, "A", "f3")); | 269 Field& f3 = Field::ZoneHandle(LookupField(lib, "A", "f3")); |
266 const intptr_t no_length = Field::kNoFixedLength; | 270 const intptr_t no_length = Field::kNoFixedLength; |
267 EXPECT_EQ(no_length, f3.guarded_list_length()); | 271 EXPECT_EQ(no_length, f3.guarded_list_length()); |
268 EXPECT_EQ(kTypedDataFloat32ArrayCid, f3.guarded_cid()); | 272 EXPECT_EQ(kTypedDataFloat32ArrayCid, f3.guarded_cid()); |
269 EXPECT_EQ(false, f3.is_nullable()); | 273 EXPECT_EQ(false, f3.is_nullable()); |
270 } | 274 } |
271 | 275 |
272 } // namespace dart | 276 } // namespace dart |
| 277 |
| 278 #endif // !defined(TARGET_ARCH_ARM64) |
OLD | NEW |