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

Unified Diff: tests/standalone/io/process_set_exit_code_test.dart

Issue 11878015: Default constructor for dart:io Path now handles native Windows paths. Path() now does the same as… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't change tools/version.dart until the binaries are updated. Created 7 years, 11 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/path_test.dart ('k') | tests/standalone/io/regress_7191_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/process_set_exit_code_test.dart
diff --git a/tests/standalone/io/process_set_exit_code_test.dart b/tests/standalone/io/process_set_exit_code_test.dart
index 63476ee8154c9a8968d849db4ddfeb6c5bac745c..29baed757e481cb3a75323d2274d3100922d82e3 100644
--- a/tests/standalone/io/process_set_exit_code_test.dart
+++ b/tests/standalone/io/process_set_exit_code_test.dart
@@ -12,7 +12,7 @@ main() {
var options = new Options();
var executable = options.executable;
var script = options.script;
- var scriptDirectory = new Path.fromNative(script).directoryPath;
+ var scriptDirectory = new Path(script).directoryPath;
var exitCodeScript =
scriptDirectory.append('process_set_exit_code_script.dart');
Process.run(executable, [exitCodeScript.toNativePath()]).then((result) {
« no previous file with comments | « tests/standalone/io/path_test.dart ('k') | tests/standalone/io/regress_7191_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698