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

Unified Diff: tests/standalone/src/io/ProcessStderrTest.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/ProcessStdIOScript.dart ('k') | tests/standalone/src/io/ProcessStdoutTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/io/ProcessStderrTest.dart
diff --git a/tests/standalone/src/ProcessStderrTest.dart b/tests/standalone/src/io/ProcessStderrTest.dart
similarity index 91%
rename from tests/standalone/src/ProcessStderrTest.dart
rename to tests/standalone/src/io/ProcessStderrTest.dart
index 6d75ede8b7752e0614a2a20c92325b7365831c4f..f8e8b0a3862c7a9add75d79730618b322089c0ee 100644
--- a/tests/standalone/src/ProcessStderrTest.dart
+++ b/tests/standalone/src/io/ProcessStderrTest.dart
@@ -9,7 +9,6 @@
// VMOptions=--short_socket_write
// VMOptions=--short_socket_read --short_socket_write
-#library("ProcessStderrTest");
#import("dart:io");
#source("ProcessTestUtil.dart");
@@ -63,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/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");
}
Expect.isTrue(scriptFile.existsSync());
test(new Process.start(getDartFileName(), [scriptFile.name, "1"]), 0);
« no previous file with comments | « tests/standalone/src/io/ProcessStdIOScript.dart ('k') | tests/standalone/src/io/ProcessStdoutTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698