[Python-checkins] r42513 - python/trunk/Lib/test/test_fcntl.py

georg.brandl python-checkins at python.org
Mon Feb 20 11:32:02 CET 2006


Author: georg.brandl
Date: Mon Feb 20 11:32:02 2006
New Revision: 42513

Modified:
   python/trunk/Lib/test/test_fcntl.py
Log:
Bug #1101233: fix test_fcntl on netbsd2 platform.


Modified: python/trunk/Lib/test/test_fcntl.py
==============================================================================
--- python/trunk/Lib/test/test_fcntl.py	(original)
+++ python/trunk/Lib/test/test_fcntl.py	Mon Feb 20 11:32:02 2006
@@ -20,7 +20,7 @@
 if sys.platform.startswith('atheos'):
     start_len = "qq"
 
-if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin',
+if sys.platform in ('netbsd1', 'netbsd2', 'Darwin1.2', 'darwin',
                     'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'freebsd6',
                     'freebsd7',
                     'bsdos2', 'bsdos3', 'bsdos4',


More information about the Python-checkins mailing list