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

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

Issue 10252020: test rename overhaul: step 12 - standalone (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « tests/standalone/src/io/ProcessStdIOScript.dart ('k') | tests/standalone/src/io/ProcessStderrTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/io/ProcessStdIOScript2.dart
diff --git a/tests/standalone/src/io/ProcessStdIOScript2.dart b/tests/standalone/src/io/ProcessStdIOScript2.dart
deleted file mode 100644
index 7c47150d6aee1149845131c6201818f39dd80e74..0000000000000000000000000000000000000000
--- a/tests/standalone/src/io/ProcessStdIOScript2.dart
+++ /dev/null
@@ -1,33 +0,0 @@
-// 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/ProcessStdIOScript.dart ('k') | tests/standalone/src/io/ProcessStderrTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698