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

Unified Diff: tests/standalone/src/io/ProcessStdIOScript2.dart

Issue 9863015: This is a request for comments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 8 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
Index: tests/standalone/src/io/ProcessStdIOScript2.dart
diff --git a/tests/standalone/src/io/ProcessStdIOScript2.dart b/tests/standalone/src/io/ProcessStdIOScript2.dart
new file mode 100644
index 0000000000000000000000000000000000000000..7c47150d6aee1149845131c6201818f39dd80e74
--- /dev/null
+++ b/tests/standalone/src/io/ProcessStdIOScript2.dart
@@ -0,0 +1,33 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+//
+// Utility script to echo strings in various formats to stdout or
+// stderr.
+
+#import("dart:io");
+
+writeData(data, encoding, stream) {
+ if (stream == "stdout") {
+ stdout.writeString(data, encoding);
+ } else if (stream == "stderr") {
+ stderr.writeString(data, encoding);
+ }
+}
+
+main() {
+ var asciiString = 'abc';
+ var latin1String = 'æøå';
+ var utf8String = new String.fromCharCodes([955]);
+ var options = new Options();
+ if (options.arguments.length > 1) {
+ var stream = options.arguments[1];
+ if (options.arguments[0] == "ascii") {
+ writeData(asciiString, Encoding.ASCII, stream);
+ } else if (options.arguments[0] == "latin1") {
+ writeData(latin1String, Encoding.ISO_8859_1, stream);
+ } else if (options.arguments[0] == "utf8") {
+ writeData(utf8String, Encoding.UTF_8, stream);
+ }
+ }
+}
« no previous file with comments | « tests/standalone/src/io/ProcessStartExceptionTest.dart ('k') | tests/standalone/src/io/ProcessWorkingDirectoryTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698