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

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

Issue 9572005: Move all tests using dart:io to a separate directory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 8 years, 10 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/ChunkedStreamTest.dart ('k') | tests/standalone/src/io/DartStdIOPipeTest.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/io/DartStdIOPipeTest.dart
diff --git a/tests/standalone/src/DartStdIOPipeTest.dart b/tests/standalone/src/io/DartStdIOPipeTest.dart
similarity index 90%
rename from tests/standalone/src/DartStdIOPipeTest.dart
rename to tests/standalone/src/io/DartStdIOPipeTest.dart
index 54ed37d27abe5816cda6ce07bb112adc62f5dc08..988ca28b3b0b6a06de50d7ee0a596b5a65e0b231 100644
--- a/tests/standalone/src/DartStdIOPipeTest.dart
+++ b/tests/standalone/src/io/DartStdIOPipeTest.dart
@@ -84,14 +84,14 @@ main() {
// Get the shell script for testing the Standalone Dart VM with
// piping and redirections of stdio.
- var shellScript = new File("tests/standalone/src/DartStdIOPipeTest.sh");
+ var shellScript = new File("tests/standalone/src/io/DartStdIOPipeTest.sh");
if (!shellScript.existsSync()) {
- shellScript = new File("../tests/standalone/src/DartStdIOPipeTest.sh");
+ shellScript = new File("../tests/standalone/src/io/DartStdIOPipeTest.sh");
}
// Get the Dart script file which echoes stdin to stdout or stderr or both.
- var scriptFile = new File("tests/standalone/src/ProcessStdIOScript.dart");
+ var scriptFile = new File("tests/standalone/src/io/ProcessStdIOScript.dart");
if (!scriptFile.existsSync()) {
- scriptFile = new File("../tests/standalone/src/ProcessStdIOScript.dart");
+ scriptFile = new File("../tests/standalone/src/io/ProcessStdIOScript.dart");
}
// Run the shell script.
« no previous file with comments | « tests/standalone/src/io/ChunkedStreamTest.dart ('k') | tests/standalone/src/io/DartStdIOPipeTest.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698