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

Side by Side Diff: runtime/vm/dart_api_impl_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/dart.cc ('k') | runtime/vm/dart_entry.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) 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
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)
OLDNEW
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/dart_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698