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 #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 { |
11 | 11 |
12 UNIT_TEST_CASE(IsolateCurrent) { | 12 UNIT_TEST_CASE(IsolateCurrent) { |
13 Isolate* isolate = Isolate::Init(NULL); | 13 Isolate* isolate = Isolate::Init(NULL); |
14 EXPECT_EQ(isolate, Isolate::Current()); | 14 EXPECT_EQ(isolate, Isolate::Current()); |
15 isolate->Shutdown(); | 15 isolate->Shutdown(); |
16 EXPECT_EQ(reinterpret_cast<Isolate*>(NULL), Isolate::Current()); | 16 EXPECT_EQ(reinterpret_cast<Isolate*>(NULL), Isolate::Current()); |
17 delete isolate; | 17 delete isolate; |
18 } | 18 } |
19 | 19 |
20 | |
21 // Only ia32 and x64 can run dart execution tests. | |
22 #if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64) | |
23 // Unit test case to verify error during isolate spawning (application classes | |
24 // not loaded into the isolate). | |
25 TEST_CASE(IsolateSpawn) { | |
Mads Ager (google)
2012/08/02 15:04:20
Looking at this test more with the help of Ivan it
Mads Ager (google)
2012/08/03 05:51:35
Done. Reintroduced. Added the test for a NULL call
| |
26 const char* kScriptChars = | |
27 "#import('dart:isolate');\n" | |
28 "class SpawnNewIsolate extends Isolate {\n" | |
29 " SpawnNewIsolate() : super() { }\n" | |
30 " void main() {\n" | |
31 " }\n" | |
32 "}\n" | |
33 "int testMain() {\n" | |
34 " try {\n" | |
35 " new SpawnNewIsolate().spawn().then(function(SendPort port) {\n" | |
36 " });\n" | |
37 " } catch (var e) {\n" | |
38 " throw;\n" | |
39 " }\n" | |
40 " return 0;\n" | |
41 "}\n"; | |
42 Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL); | |
43 Dart_Handle result = Dart_Invoke(lib, Dart_NewString("testMain"), 0, NULL); | |
44 EXPECT(Dart_IsError(result)); | |
45 EXPECT(Dart_ErrorHasException(result)); | |
46 Dart_Handle exception_result = Dart_ErrorGetException(result); | |
47 EXPECT_VALID(exception_result); | |
48 } | |
49 #endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64). | |
50 | |
51 } // namespace dart | 20 } // namespace dart |
OLD | NEW |