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

Unified Diff: tests/standalone/io/named_pipe_script_test.dart

Issue 2641673002: Gardening: Fix previous fix (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/named_pipe_script_test.dart
diff --git a/tests/standalone/io/named_pipe_script_test.dart b/tests/standalone/io/named_pipe_script_test.dart
index 8da51545283a27a260d9049d1c5f7d709adb268d..70599ed8a713fd8fbd9bb0a2e54ff8638cf9e176 100644
--- a/tests/standalone/io/named_pipe_script_test.dart
+++ b/tests/standalone/io/named_pipe_script_test.dart
@@ -14,6 +14,7 @@ main() async {
// Reading a script from a named pipe is only supported on Linux and MacOS.
if (!Platform.isLinux && !Platform.isMacOS) {
print("This test is only supported on Linux and MacOS.");
+ asyncEnd();
return;
}
@@ -24,6 +25,7 @@ main() async {
// test.
if (!await (new File(stdinPipePath).exists())) {
print("Couldn't find $stdinPipePath.");
+ asyncEnd();
return;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698