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

Unified Diff: sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart

Issue 15741021: Get deploy tests working on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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: sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart
diff --git a/sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart b/sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart
index 46a95937d147718183b4a181d56ec5865fd85cc7..d8a1f864a68208c8a0fda160775ddbbe7046d32a 100644
--- a/sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart
+++ b/sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart
@@ -2,6 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+import 'package:pathos/path.dart' as path;
import 'package:scheduled_test/scheduled_test.dart';
import '../descriptor.dart' as d;
@@ -24,12 +25,12 @@ main() {
schedulePub(args: ["deploy"],
output: '''
Finding entrypoints...
-Copying web/ => deploy/
-Compiling web/file.dart => deploy/file.dart.js
-Compiling web/file.dart => deploy/file.dart
-Compiling web/subdir/subfile.dart => deploy/subdir/subfile.dart.js
-Compiling web/subdir/subfile.dart => deploy/subdir/subfile.dart
-''',
+Copying web| => deploy|
+Compiling web|file.dart => deploy|file.dart.js
+Compiling web|file.dart => deploy|file.dart
+Compiling web|subdir|subfile.dart => deploy|subdir|subfile.dart.js
+Compiling web|subdir|subfile.dart => deploy|subdir|subfile.dart
+'''.replaceAll('|', path.separator),
exitCode: 0);
d.dir(appPath, [

Powered by Google App Engine
This is Rietveld 408576698