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

Unified Diff: pkg/unittest/lib/vm_config.dart

Issue 25404004: Avoid using stdioType in unittest to work around issue 13712. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review change. Created 7 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/vm_config.dart
diff --git a/pkg/unittest/lib/vm_config.dart b/pkg/unittest/lib/vm_config.dart
index 962ca9753b05fe47fc49d2961347a939e4843f0f..94e9ff0adee611a49df3d1c81814bd5dcad34a7a 100644
--- a/pkg/unittest/lib/vm_config.dart
+++ b/pkg/unittest/lib/vm_config.dart
@@ -21,8 +21,11 @@ class VMConfiguration extends SimpleConfiguration {
// We make this public so the user can turn it off if they want.
bool useColor;
- VMConfiguration() :
- super(), useColor = stdioType(stdout) == StdioType.TERMINAL;
+ VMConfiguration()
+ : super(),
+ // TODO(nweiz): Re-enable this when issue 13712 is fixed.
+ // useColor = stdioType(stdout) == StdioType.TERMINAL;
+ useColor = false;
String formatResult(TestCase testCase) {
String result = super.formatResult(testCase);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698