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

Side by Side Diff: runtime/vm/snapshot_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/simulator_arm64.cc ('k') | runtime/vm/stack_frame.h » ('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 "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
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)
OLDNEW
« no previous file with comments | « runtime/vm/simulator_arm64.cc ('k') | runtime/vm/stack_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698