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

Side by Side Diff: runtime/vm/isolate_test.cc

Issue 11318018: - Represent strings internally in UTF-16 format, this makes it (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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
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 #include "platform/assert.h" 5 #include "platform/assert.h"
6 #include "vm/globals.h" 6 #include "vm/globals.h"
7 #include "vm/isolate.h" 7 #include "vm/isolate.h"
8 #include "vm/unit_test.h" 8 #include "vm/unit_test.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 16 matching lines...) Expand all
27 "void entry() {}\n" 27 "void entry() {}\n"
28 "int testMain() {\n" 28 "int testMain() {\n"
29 " try {\n" 29 " try {\n"
30 " spawnFunction(entry);\n" 30 " spawnFunction(entry);\n"
31 " } catch (e) {\n" 31 " } catch (e) {\n"
32 " throw;\n" 32 " throw;\n"
33 " }\n" 33 " }\n"
34 " return 0;\n" 34 " return 0;\n"
35 "}\n"; 35 "}\n";
36 Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL); 36 Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
37 Dart_Handle result = Dart_Invoke(lib, Dart_NewString("testMain"), 0, NULL); 37 Dart_Handle result = Dart_Invoke(lib, NewString("testMain"), 0, NULL);
38 EXPECT_ERROR(result, "Null callback specified for isolate creation"); 38 EXPECT_ERROR(result, "Null callback specified for isolate creation");
39 EXPECT(Dart_ErrorHasException(result)); 39 EXPECT(Dart_ErrorHasException(result));
40 Dart_Handle exception_result = Dart_ErrorGetException(result); 40 Dart_Handle exception_result = Dart_ErrorGetException(result);
41 EXPECT_VALID(exception_result); 41 EXPECT_VALID(exception_result);
42 } 42 }
43 #endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64). 43 #endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64).
44 44
45 } // namespace dart 45 } // namespace dart
OLDNEW
« runtime/vm/dart_api_impl.cc ('K') | « runtime/vm/heap_test.cc ('k') | runtime/vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698