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

Unified Diff: tests/standalone/io/process_stdout_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/process_stderr_test.dart ('k') | tests/standalone/io/process_test_util.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/process_stdout_test.dart
diff --git a/tests/standalone/src/io/ProcessStdoutTest.dart b/tests/standalone/io/process_stdout_test.dart
similarity index 91%
rename from tests/standalone/src/io/ProcessStdoutTest.dart
rename to tests/standalone/io/process_stdout_test.dart
index 80e2c2df9d3c6cbf681644aa26b8803bd115f96d..7fac576b4f3f5a0052d3efd9351bcde7f7b5c30a 100644
--- a/tests/standalone/src/io/ProcessStdoutTest.dart
+++ b/tests/standalone/io/process_stdout_test.dart
@@ -10,7 +10,7 @@
// VMOptions=--short_socket_read --short_socket_write
#import("dart:io");
-#source("ProcessTestUtil.dart");
+#source("process_test_util.dart");
void test(Process process, int expectedExitCode) {
// Wait for the process to start and then interact with it.
@@ -62,9 +62,9 @@ main() {
// Run the test using the dart binary with an echo script.
// The test runner can be run from either the root or from runtime.
- 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");
}
Expect.isTrue(scriptFile.existsSync());
test(new Process.start(getDartFileName(), [scriptFile.name, "0"]), 0);
« no previous file with comments | « tests/standalone/io/process_stderr_test.dart ('k') | tests/standalone/io/process_test_util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698