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

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

Issue 2638023004: Remove recently added --checked flag from named_pipe_script_test to make it compatible with product… (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 70599ed8a713fd8fbd9bb0a2e54ff8638cf9e176..ed5a659c9f50a780d5b73fe617f4406f89bb3fa8 100644
--- a/tests/standalone/io/named_pipe_script_test.dart
+++ b/tests/standalone/io/named_pipe_script_test.dart
@@ -31,7 +31,7 @@ main() async {
StringBuffer output = new StringBuffer();
Process process =
- await Process.start(Platform.executable, ['--checked', stdinPipePath]);
+ await Process.start(Platform.executable, [stdinPipePath]);
bool stdinWriteFailed = false;
process.stdout.transform(UTF8.decoder).listen(output.write);
process.stderr.transform(UTF8.decoder).listen((data) {
« 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