Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
18d2c934
Commit
18d2c934
authored
Feb 06, 2017
by
Steve Dower
Browse files
Options
Browse Files
Download
Plain Diff
Issue #28164: Improves test on Windows 7
parents
d947e4da
2dfa6cb9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
16 deletions
+22
-16
Lib/test/test_winconsoleio.py
Lib/test/test_winconsoleio.py
+22
-16
No files found.
Lib/test/test_winconsoleio.py
View file @
18d2c934
...
...
@@ -6,6 +6,7 @@ import os
import
sys
import
tempfile
import
unittest
from
test
import
support
if
sys
.
platform
!=
'win32'
:
raise
unittest
.
SkipTest
(
"test only relevant on win32"
)
...
...
@@ -97,23 +98,28 @@ class WindowsConsoleIOTests(unittest.TestCase):
self
.
assertIsInstance
(
f
,
ConIO
)
f
.
close
()
try
:
f
=
open
(
r'\\.\
co
nin$'
,
'rb'
,
buffering
=
0
)
except
FileNotFoundError
:
# If we cannot find the file, this part should be skipped
print
(
'
\
\
\
\
.
\
\
conin$ was not found on this OS'
)
else
:
self
.
assertIsInstance
(
f
,
ConIO
)
f
.
close
()
@
unittest
.
skipIf
(
sys
.
getwindowsversion
()[:
2
]
<=
(
6
,
1
),
"test does not work on Windows 7 and earlier"
)
def
test_conin_conout_names
(
self
):
f
=
open
(
r'\\.\
co
nin$'
,
'rb'
,
buffering
=
0
)
self
.
assertIsInstance
(
f
,
ConIO
)
f
.
close
()
try
:
f
=
open
(
'//?/conout$'
,
'wb'
,
buffering
=
0
)
except
FileNotFoundError
:
# If we cannot find the file, this part should be skipped
print
(
'//?/conout$ was not found on this OS'
)
else
:
self
.
assertIsInstance
(
f
,
ConIO
)
f
.
close
()
f
=
open
(
'//?/conout$'
,
'wb'
,
buffering
=
0
)
self
.
assertIsInstance
(
f
,
ConIO
)
f
.
close
()
def
test_conout_path
(
self
):
temp_path
=
tempfile
.
mkdtemp
()
self
.
addCleanup
(
support
.
rmtree
,
temp_path
)
conout_path
=
os
.
path
.
join
(
temp_path
,
'CONOUT$'
)
with
open
(
conout_path
,
'wb'
,
buffering
=
0
)
as
f
:
if
sys
.
getwindowsversion
()[:
2
]
>
(
6
,
1
):
self
.
assertIsInstance
(
f
,
ConIO
)
else
:
self
.
assertNotIsInstance
(
f
,
ConIO
)
def
assertStdinRoundTrip
(
self
,
text
):
stdin
=
open
(
'CONIN$'
,
'r'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment