Fix a failing test on FreeBSD: ttys are seekable in FreeBSD, too.
This commit is contained in:
parent
49d90bc9ef
commit
caf871ad32
|
@ -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…
Reference in New Issue