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

Unified Diff: tests/standalone/src/io/ProcessStdoutTest.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: 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
Index: tests/standalone/src/io/ProcessStdoutTest.dart
diff --git a/tests/standalone/src/ProcessStdoutTest.dart b/tests/standalone/src/io/ProcessStdoutTest.dart
similarity index 91%
rename from tests/standalone/src/ProcessStdoutTest.dart
rename to tests/standalone/src/io/ProcessStdoutTest.dart
index a49ed6e0122ee84513c5b8ec6e0b5246fd85fdd1..80e2c2df9d3c6cbf681644aa26b8803bd115f96d 100644
--- a/tests/standalone/src/ProcessStdoutTest.dart
+++ b/tests/standalone/src/io/ProcessStdoutTest.dart
@@ -9,7 +9,6 @@
// VMOptions=--short_socket_write
// VMOptions=--short_socket_read --short_socket_write
-#library("ProcessStdoutTest");
#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, "0"]), 0);

Powered by Google App Engine
This is Rietveld 408576698