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

Unified Diff: pkg/intl/test/message_extraction/message_extraction_test.dart

Issue 23630002: Resume testing message extraction on Windows after dart:io fix (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | « no previous file | pkg/pkg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/test/message_extraction/message_extraction_test.dart
diff --git a/pkg/intl/test/message_extraction/message_extraction_test.dart b/pkg/intl/test/message_extraction/message_extraction_test.dart
index a040df1d5991b98841627d3af0ead43eab8b207e..e472cdaed51b4e5bad91c27c6bfda3aa0050f80e 100644
--- a/pkg/intl/test/message_extraction/message_extraction_test.dart
+++ b/pkg/intl/test/message_extraction/message_extraction_test.dart
@@ -7,6 +7,7 @@ library message_extraction_test;
import 'package:unittest/unittest.dart';
import 'dart:io';
import 'dart:async';
+import 'dart:convert';
import 'package:path/path.dart' as path;
import '../data_directory.dart';
@@ -74,7 +75,8 @@ Future<ProcessResult> run(ProcessResult previousResult, List<String> filenames)
..add(filesInTheRightDirectory.first)
..addAll(["--output-dir=${dir()}"])
..addAll(filesInTheRightDirectory.skip(1));
- var result = Process.run(dart, args);
+ var result = Process.run(dart, args, stdoutEncoding: UTF8,
+ stderrEncoding: UTF8);
return result;
}
« no previous file with comments | « no previous file | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698