[Python-checkins] python/dist/src/Lib/test regrtest.py, 1.160, 1.161 test_fcntl.py, 1.25, 1.26 test_socket.py, 1.75, 1.76

perky at users.sourceforge.net perky at users.sourceforge.net
Wed Aug 18 17:13:44 CEST 2004


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

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


Index: regrtest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/regrtest.py,v
retrieving revision 1.160
retrieving revision 1.161
diff -C2 -d -r1.160 -r1.161
*** regrtest.py	12 Aug 2004 18:27:48 -0000	1.160
--- regrtest.py	18 Aug 2004 15:13:41 -0000	1.161
***************
*** 1037,1040 ****
--- 1037,1041 ----
          test_cd
          test_cl
+         test_gdbm
          test_gl
          test_imgfile
***************
*** 1043,1046 ****
--- 1044,1048 ----
          test_macfs
          test_macostools
+         test_mpz
          test_nis
          test_normalization
***************
*** 1048,1055 ****
--- 1050,1059 ----
          test_pep277
          test_plistlib
+         test_pty
          test_scriptpackages
          test_socket_ssl
          test_socketserver
          test_sunaudiodev
+         test_tcl
          test_timeout
          test_unicode_file
***************
*** 1060,1063 ****
--- 1064,1068 ----
  }
  _expectations['freebsd5'] = _expectations['freebsd4']
+ _expectations['freebsd6'] = _expectations['freebsd4']
  
  class _ExpectedSkips:

Index: test_fcntl.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_fcntl.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** test_fcntl.py	12 Feb 2004 17:35:11 -0000	1.25
--- test_fcntl.py	18 Aug 2004 15:13:41 -0000	1.26
***************
*** 22,26 ****
  
  if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin',
!                     'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
                      'bsdos2', 'bsdos3', 'bsdos4',
                      'openbsd', 'openbsd2', 'openbsd3'):
--- 22,26 ----
  
  if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin',
!                     'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'freebsd6',
                      'bsdos2', 'bsdos3', 'bsdos4',
                      'openbsd', 'openbsd2', 'openbsd3'):

Index: test_socket.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_socket.py,v
retrieving revision 1.75
retrieving revision 1.76
diff -C2 -d -r1.75 -r1.76
*** test_socket.py	16 Aug 2004 15:35:54 -0000	1.75
--- test_socket.py	18 Aug 2004 15:13:41 -0000	1.76
***************
*** 312,316 ****
          # I've ordered this by protocols that have both a tcp and udp
          # protocol, at least for modern Linuxes.
!         if sys.platform in ('freebsd4', 'freebsd5', 'darwin'):
              # avoid the 'echo' service on this platform, as there is an
              # assumption breaking non-standard port/protocol entry
--- 312,316 ----
          # I've ordered this by protocols that have both a tcp and udp
          # protocol, at least for modern Linuxes.
!         if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'darwin'):
              # avoid the 'echo' service on this platform, as there is an
              # assumption breaking non-standard port/protocol entry



More information about the Python-checkins mailing list