[Python-checkins] python/dist/src/Lib/test regrtest.py, 1.169, 1.170 test_fcntl.py, 1.27, 1.28 test_socket.py, 1.78, 1.79

perky@users.sourceforge.net perky at users.sourceforge.net
Sun Jul 17 04:37:33 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29720/Lib/test

Modified Files:
	regrtest.py test_fcntl.py test_socket.py 
Log Message:
Add support for FreeBSD 7.


Index: regrtest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/regrtest.py,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -d -r1.169 -r1.170
--- regrtest.py	14 Jun 2005 09:31:28 -0000	1.169
+++ regrtest.py	17 Jul 2005 02:37:00 -0000	1.170
@@ -1073,6 +1073,7 @@
 }
 _expectations['freebsd5'] = _expectations['freebsd4']
 _expectations['freebsd6'] = _expectations['freebsd4']
+_expectations['freebsd7'] = _expectations['freebsd4']
 
 class _ExpectedSkips:
     def __init__(self):

Index: test_fcntl.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_fcntl.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- test_fcntl.py	4 Apr 2005 15:21:04 -0000	1.27
+++ test_fcntl.py	17 Jul 2005 02:37:00 -0000	1.28
@@ -22,6 +22,7 @@
 
 if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin',
                     'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'freebsd6',
+                    'freebsd7',
                     'bsdos2', 'bsdos3', 'bsdos4',
                     'openbsd', 'openbsd2', 'openbsd3'):
     if struct.calcsize('l') == 8:

Index: test_socket.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_socket.py,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- test_socket.py	11 Mar 2005 00:04:17 -0000	1.78
+++ test_socket.py	17 Jul 2005 02:37:00 -0000	1.79
@@ -312,7 +312,7 @@
         # I've ordered this by protocols that have both a tcp and udp
         # protocol, at least for modern Linuxes.
         if sys.platform in ('linux2', 'freebsd4', 'freebsd5', 'freebsd6',
-                            'darwin'):
+                            'freebsd7', 'darwin'):
             # avoid the 'echo' service on this platform, as there is an
             # assumption breaking non-standard port/protocol entry
             services = ('daytime', 'qotd', 'domain')



More information about the Python-checkins mailing list