tests/test-bundle2.t
changeset 21550 b4f0e15d1dab
parent 21259 ab5040cd5749
parent 21547 565d45919db8
child 21585 652e07debf10
--- a/tests/test-bundle2.t	Tue Apr 29 14:12:32 2014 -0700
+++ b/tests/test-bundle2.t	Mon May 26 12:39:31 2014 -0400
@@ -8,6 +8,14 @@
   > code. We still need to be able to test it while it grow up.
   > """
   > 
+  > try:
+  >     import msvcrt
+  >     msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)
+  >     msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
+  >     msvcrt.setmode(sys.stderr.fileno(), os.O_BINARY)
+  > except ImportError:
+  >     pass
+  > 
   > import sys
   > from mercurial import cmdutil
   > from mercurial import util