mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Fix a failing test on FreeBSD: ttys are seekable in FreeBSD, too.
This commit is contained in:
parent
49d90bc9ef
commit
caf871ad32
1 changed files with 3 additions and 2 deletions
|
@ -136,8 +136,9 @@ class OtherFileTests(unittest.TestCase):
|
|||
f = _fileio._FileIO("/dev/tty", "a")
|
||||
self.assertEquals(f.readable(), False)
|
||||
self.assertEquals(f.writable(), True)
|
||||
if sys.platform != "darwin":
|
||||
# Somehow /dev/tty appears seekable on OSX
|
||||
if sys.platform != "darwin" and \
|
||||
not sys.platform.startswith('freebsd'):
|
||||
# Somehow /dev/tty appears seekable on some BSDs
|
||||
self.assertEquals(f.seekable(), False)
|
||||
self.assertEquals(f.isatty(), True)
|
||||
f.close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue