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

Unified Diff: runtime/observatory/tests/service/test_helper.dart

Issue 2376433003: Split debugger_location_test into two separate tests (Closed)
Patch Set: Created 4 years, 3 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/tests/service/service.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 858a23314eed7fd4fe62ffca200dd2792dfac1af..63b8fc2bb97231c11cc4683971353398e2bed074 100644
--- a/runtime/observatory/tests/service/test_helper.dart
+++ b/runtime/observatory/tests/service/test_helper.dart
@@ -226,11 +226,11 @@ class _ServiceTesteeLauncher {
first = false;
print('** Signaled to run test queries on $portNumber');
}
- print(line);
+ print('>testee>out> $line');
});
process.stderr.transform(UTF8.decoder)
.transform(new LineSplitter()).listen((line) {
- print(line);
+ print('>testee>err> $line');
});
process.exitCode.then((exitCode) {
if ((exitCode != 0) && !killedByTester) {
« no previous file with comments | « runtime/observatory/tests/service/service.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698