| Index: runtime/observatory/tests/service/test_helper.dart
|
| diff --git a/runtime/observatory/tests/service/test_helper.dart b/runtime/observatory/tests/service/test_helper.dart
|
| index fed6ee1c609f27016a11ab13f2b4920fb407a5e0..6da69becfc01f52b5f273e55768acc87ae72a345 100644
|
| --- a/runtime/observatory/tests/service/test_helper.dart
|
| +++ b/runtime/observatory/tests/service/test_helper.dart
|
| @@ -108,9 +108,6 @@ void runIsolateTests(List<String> mainArgs,
|
| } else {
|
| var process = new _TestLauncher();
|
| process.launch(pause_on_exit).then((port) {
|
| - if (mainArgs.contains("--gdb")) {
|
| - port = 8181;
|
| - }
|
| String addr = 'ws://localhost:$port/ws';
|
| var testIndex = 1;
|
| var totalTests = tests.length;
|
| @@ -195,9 +192,6 @@ Future runVMTests(List<String> mainArgs,
|
| } else {
|
| var process = new _TestLauncher();
|
| process.launch(pause_on_exit).then((port) async {
|
| - if (mainArgs.contains("--gdb")) {
|
| - port = 8181;
|
| - }
|
| String addr = 'ws://localhost:$port/ws';
|
| var testIndex = 1;
|
| var totalTests = tests.length;
|
|
|