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

Side by Side Diff: runtime/observatory/tests/service/set_vm_name_rpc_test.dart

Issue 2523053002: Implement rewind: drop one or more frames from the debugger. (Closed)
Patch Set: code review Created 4 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
OLDNEW
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 --vm-name=Walter 4 // VMOptions=--error_on_bad_type --error_on_bad_override --vm-name=Walter
5 5
6 import 'dart:async'; 6 import 'dart:async';
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 'test_helper.dart'; 9 import 'test_helper.dart';
10 10
(...skipping 14 matching lines...) Expand all
25 }); 25 });
26 26
27 var result = await vm.setName('Barbara'); 27 var result = await vm.setName('Barbara');
28 expect(result.type, equals('Success')); 28 expect(result.type, equals('Success'));
29 29
30 await completer.future; 30 await completer.future;
31 expect(vm.name, equals('Barbara')); 31 expect(vm.name, equals('Barbara'));
32 }, 32 },
33 ]; 33 ];
34 34
35 main(args) async => runVMTests(args, tests, trace_service: true); 35 main(args) async => runVMTests(args, tests,
36 extraArgs: [ '--trace-service',
37 '--trace-service-verbose' ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698