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

Unified Diff: tests/standalone/io/process_run_output_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
Index: tests/standalone/io/process_run_output_test.dart
diff --git a/tests/standalone/src/io/ProcessRunOutputTest.dart b/tests/standalone/io/process_run_output_test.dart
similarity index 90%
rename from tests/standalone/src/io/ProcessRunOutputTest.dart
rename to tests/standalone/io/process_run_output_test.dart
index 1b32f452c1dd871e3d6e8c9fe5552f129d5693bd..5d78af29cbd3ebe9d0c1c9a86de775e0684c555f 100644
--- a/tests/standalone/src/io/ProcessRunOutputTest.dart
+++ b/tests/standalone/io/process_run_output_test.dart
@@ -6,7 +6,7 @@
// non-interactive processes started with Process.run.
#import("dart:io");
-#source("ProcessTestUtil.dart");
+#source("process_test_util.dart");
checkOutput(encoding, output) {
if (encoding == 'ascii') {
@@ -49,10 +49,10 @@ test(scriptFile, encoding, stream) {
}
main() {
- var scriptFile = new File("tests/standalone/src/io/ProcessStdIOScript2.dart");
+ var scriptFile = new File("tests/standalone/io/process_std_io_script2.dart");
if (!scriptFile.existsSync()) {
scriptFile =
- new File("../tests/standalone/src/io/ProcessStdIOScript2.dart");
+ new File("../tests/standalone/io/process_std_io_script2.dart");
}
Expect.isTrue(scriptFile.existsSync());
test(scriptFile.name, 'ascii', 'stdout');
« no previous file with comments | « tests/standalone/io/process_invalid_arguments_test.dart ('k') | tests/standalone/io/process_segfault_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698