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

Unified Diff: tests/standalone/io/dart_std_io_pipe_test.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/io/compile_all_test.dart ('k') | tests/standalone/io/dart_std_io_pipe_test.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/dart_std_io_pipe_test.dart
diff --git a/tests/standalone/src/io/DartStdIOPipeTest.dart b/tests/standalone/io/dart_std_io_pipe_test.dart
similarity index 89%
rename from tests/standalone/src/io/DartStdIOPipeTest.dart
rename to tests/standalone/io/dart_std_io_pipe_test.dart
index 71a5f9aaf7664fc205cf78bae44a29182e05004b..807eb069a4cde80ed0e068d1ac325ad2615b7a21 100644
--- a/tests/standalone/src/io/DartStdIOPipeTest.dart
+++ b/tests/standalone/io/dart_std_io_pipe_test.dart
@@ -11,7 +11,7 @@
// VMOptions=--short_socket_read --short_socket_write
#import("dart:io");
-#source("ProcessTestUtil.dart");
+#source("process_test_util.dart");
void checkFileEmpty(String fileName) {
RandomAccessFile pipeOut = new File(fileName).openSync();
@@ -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/io/DartStdIOPipeTest.sh");
+ var shellScript = new File("tests/standalone/io/dart_std_io_pipe_test.sh");
if (!shellScript.existsSync()) {
- shellScript = new File("../tests/standalone/src/io/DartStdIOPipeTest.sh");
+ shellScript = new File("../tests/standalone/io/dart_std_io_pipe_test.sh");
}
// Get the Dart script file which echoes stdin to stdout or stderr or both.
- var scriptFile = new File("tests/standalone/src/io/ProcessStdIOScript.dart");
+ var scriptFile = new File("tests/standalone/io/process_std_io_script.dart");
if (!scriptFile.existsSync()) {
- scriptFile = new File("../tests/standalone/src/io/ProcessStdIOScript.dart");
+ scriptFile = new File("../tests/standalone/io/process_std_io_script.dart");
}
// Run the shell script.
« no previous file with comments | « tests/standalone/io/compile_all_test.dart ('k') | tests/standalone/io/dart_std_io_pipe_test.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698