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

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

Issue 2521413002: Revert "Implement rewind: drop one or more frames from the debugger." (Closed)
Patch Set: Created 4 years 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 4 // VMOptions=--error_on_bad_type --error_on_bad_override
5 5
6 import 'package:observatory/models.dart' as M; 6 import 'package:observatory/models.dart' as M;
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 import 'dart:async'; 10 import 'dart:async';
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 expect(pausetime2.millisecondsSinceEpoch, 82 expect(pausetime2.millisecondsSinceEpoch,
83 greaterThan(pausetime1.millisecondsSinceEpoch)); 83 greaterThan(pausetime1.millisecondsSinceEpoch));
84 }, 84 },
85 85
86 ]; 86 ];
87 87
88 main(args) => runIsolateTests(args, tests, 88 main(args) => runIsolateTests(args, tests,
89 testeeConcurrent: testMain, 89 testeeConcurrent: testMain,
90 pause_on_start: true, 90 pause_on_start: true,
91 pause_on_exit: true, 91 pause_on_exit: true,
92 verbose_vm: true, 92 trace_service: true,
93 extraArgs: [ '--trace-service', 93 verbose_vm: true);
94 '--trace-service-verbose' ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698