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

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

Issue 11578007: Turn on dartc testing of tests/standalone. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 // Test a dart sub-process handling stdio with different types of 5 // Test a dart sub-process handling stdio with different types of
6 // redirection. 6 // redirection.
7 // 7 //
8 // VMOptions= 8 // VMOptions=
9 // VMOptions=--short_socket_read 9 // VMOptions=--short_socket_read
10 // VMOptions=--short_socket_write 10 // VMOptions=--short_socket_write
11 // VMOptions=--short_socket_read --short_socket_write 11 // VMOptions=--short_socket_read --short_socket_write
12 12
13 import "dart:io"; 13 import "dart:io";
14 part "process_test_util.dart"; 14 import "process_test_util.dart";
15 15
16 void checkFileEmpty(String fileName) { 16 void checkFileEmpty(String fileName) {
17 RandomAccessFile pipeOut = new File(fileName).openSync(); 17 RandomAccessFile pipeOut = new File(fileName).openSync();
18 Expect.equals(0, pipeOut.lengthSync()); 18 Expect.equals(0, pipeOut.lengthSync());
19 pipeOut.closeSync(); 19 pipeOut.closeSync();
20 } 20 }
21 21
22 22
23 void checkFileContent(String fileName, String content) { 23 void checkFileContent(String fileName, String content) {
24 RandomAccessFile pipeOut = new File(fileName).openSync(); 24 RandomAccessFile pipeOut = new File(fileName).openSync();
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 var scriptFile = new File("tests/standalone/io/process_std_io_script.dart"); 94 var scriptFile = new File("tests/standalone/io/process_std_io_script.dart");
95 if (!scriptFile.existsSync()) { 95 if (!scriptFile.existsSync()) {
96 scriptFile = new File("../tests/standalone/io/process_std_io_script.dart"); 96 scriptFile = new File("../tests/standalone/io/process_std_io_script.dart");
97 } 97 }
98 98
99 // Run the shell script. 99 // Run the shell script.
100 test(shellScript.name, scriptFile.name, "0"); 100 test(shellScript.name, scriptFile.name, "0");
101 test(shellScript.name, scriptFile.name, "1"); 101 test(shellScript.name, scriptFile.name, "1");
102 test(shellScript.name, scriptFile.name, "2"); 102 test(shellScript.name, scriptFile.name, "2");
103 } 103 }
OLDNEW
« no previous file with comments | « no previous file | tests/standalone/io/process_broken_pipe_test.dart » ('j') | tests/standalone/io/process_exit_negative_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698