Author: hyeshik.chang
Date: Mon Aug 13 15:21:33 2007
New Revision: 56984
Modified:
python/branches/py3k/Lib/test/test_fileio.py
Log:
Fix a failing test on FreeBSD: ttys are seekable in FreeBSD, too.
Modified: python/branches/py3k/Lib/test/test_fileio.py
==============================================================================
--- python/branches/py3k/Lib/test/test_fileio.py (original)
+++ python/branches/py3k/Lib/test/test_fileio.py Mon Aug 13 15:21:33 2007
@@ -136,8 +136,9 @@
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()
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins