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

Side by Side Diff: tests/standalone/io/stdout_stderr_test.dart

Issue 12408004: Fix checked mode error on socket IOSink (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/io/io_sink.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 import "dart:async";
6 import "dart:io";
7
8 callIOSink(IOSink sink) {
9 // Call all methods on IOSink.
10 sink.encoding = Encoding.ASCII;
11 Expect.equals(Encoding.ASCII, sink.encoding);
12 sink.write("Hello\n");
13 sink.writeln("Hello");
14 sink.writeAll(["H", "e", "l", "lo\n"]);
15 sink.writeCharCode(72);
16 sink.writeBytes([101, 108, 108, 111, 10]);
17
18 var controller = new StreamController();
19 sink.writeStream(controller.stream);
20 controller.add([72, 101, 108]);
21 controller.add([108, 111, 10]);
22 controller.close();
23
24 controller = new StreamController();
25 controller.stream.pipe(sink);
26 controller.add([72, 101, 108]);
27 controller.add([108, 111, 10]);
28 controller.close();
29 }
30
31 main() {
32 callIOSink(stdout);
33 stdout.done.then((_) {
34 callIOSink(stderr);
35 stderr.done.then((_) {
36 stdout.close();
37 stderr.close();
38 });
39 });
40 }
OLDNEW
« no previous file with comments | « sdk/lib/io/io_sink.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698