OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 // VMOptions=--error_on_bad_type --error_on_bad_override | 4 // VMOptions=--error_on_bad_type --error_on_bad_override |
5 | 5 |
6 import 'dart:developer'; | 6 import 'dart:developer'; |
7 import 'package:observatory/service_io.dart'; | 7 import 'package:observatory/service_io.dart'; |
8 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
9 import 'service_test_common.dart'; | 9 import 'service_test_common.dart'; |
10 import 'test_helper.dart'; | 10 import 'test_helper.dart'; |
11 | 11 |
12 void method(int value, _) { | 12 void method(int value, _) { |
13 debugger(); | 13 debugger(); |
14 } | 14 } |
15 | 15 |
16 void testFunction() { | 16 void testFunction() { |
17 int i = 0; | 17 int i = 0; |
18 while (true) { | 18 while (true) { |
19 if (++i % 100000000 == 0) { | 19 if (++i % 100000000 == 0) { |
20 method(10000, 50); | 20 method(10000, 50); |
21 } | 21 } |
22 } | 22 } |
23 } | 23 } |
24 | 24 |
25 var tests = [ | 25 var tests = [ |
26 hasStoppedAtBreakpoint, | 26 |
| 27 hasStoppedAtBreakpoint, |
27 | 28 |
28 // Evaluate against library, class, and instance. | 29 // Evaluate against library, class, and instance. |
29 (Isolate isolate) async { | 30 (Isolate isolate) async { |
30 var result; | 31 var result; |
31 result = await isolate.evalFrame(0, 'value'); | 32 result = await isolate.evalFrame(0, 'value'); |
32 expect(result.valueAsString, equals('10000')); | 33 expect(result.valueAsString, equals('10000')); |
33 | 34 |
34 result = await isolate.evalFrame(0, '_'); | 35 result = await isolate.evalFrame(0, '_'); |
35 expect(result.valueAsString, equals('50')); | 36 expect(result.valueAsString, equals('50')); |
36 | 37 |
37 result = await isolate.evalFrame(0, 'value + _'); | 38 result = await isolate.evalFrame(0, 'value + _'); |
38 expect(result.valueAsString, equals('10050')); | 39 expect(result.valueAsString, equals('10050')); |
39 | 40 |
40 result = await isolate.evalFrame(1, 'i'); | 41 result = await isolate.evalFrame(1, 'i'); |
41 expect(result.valueAsString, equals('100000000')); | 42 expect(result.valueAsString, equals('100000000')); |
42 }, | 43 }, |
| 44 |
43 ]; | 45 ]; |
44 | 46 |
45 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); | 47 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); |
OLD | NEW |