[Python-checkins] python/dist/src/Lib/test regrtest.py,1.135,1.136

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Sat, 29 Mar 2003 14:01:19 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv14076/Lib/test

Modified Files:
	regrtest.py 
Log Message:
Move Mac/Windows specific expected skips from each platform list
to the ExpectedSkips class.  Add test_scriptpackages to Mac only list.
Add test_unicode_file to Windows only list.


Index: regrtest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/regrtest.py,v
retrieving revision 1.135
retrieving revision 1.136
diff -C2 -d -r1.135 -r1.136
*** regrtest.py	11 Mar 2003 14:46:48 -0000	1.135
--- regrtest.py	29 Mar 2003 22:01:17 -0000	1.136
***************
*** 575,580 ****
          test_largefile
          test_linuxaudiodev
-         test_macfs
-         test_macostools
          test_mhlib
          test_mpz
--- 575,578 ----
***************
*** 582,586 ****
          test_openpty
          test_ossaudiodev
-         test_plistlib
          test_poll
          test_posix
--- 580,583 ----
***************
*** 605,617 ****
          test_largefile
          test_linuxaudiodev
-         test_macfs
-         test_macostools
          test_nis
          test_ntpath
          test_ossaudiodev
-         test_plistlib
          test_socketserver
          test_sunaudiodev
-         test_unicode_file
          """,
     'mac':
--- 602,610 ----
***************
*** 659,663 ****
          test_tarfile
          test_timing
-         test_unicode_file
          """,
      'unixware7':
--- 652,655 ----
***************
*** 672,682 ****
          test_largefile
          test_linuxaudiodev
-         test_macfs
-         test_macostools
          test_minidom
          test_nis
          test_ntpath
          test_openpty
-         test_plistlib
          test_pyexpat
          test_sax
--- 664,671 ----
***************
*** 684,688 ****
          test_sunaudiodev
          test_sundry
-         test_unicode_file
          """,
      'openunix8':
--- 673,676 ----
***************
*** 697,707 ****
          test_largefile
          test_linuxaudiodev
-         test_macfs
-         test_macostools
          test_minidom
          test_nis
          test_ntpath
          test_openpty
-         test_plistlib
          test_pyexpat
          test_sax
--- 685,692 ----
***************
*** 709,713 ****
          test_sunaudiodev
          test_sundry
-         test_unicode_file
          """,
      'sco_sv3':
--- 694,697 ----
***************
*** 726,736 ****
          test_linuxaudiodev
          test_locale
-         test_macfs
-         test_macostools
          test_minidom
          test_nis
          test_ntpath
          test_openpty
-         test_plistlib
          test_pyexpat
          test_queue
--- 710,717 ----
***************
*** 743,747 ****
          test_threadedtempfile
          test_threading
-         test_unicode_file
          """,
      'riscos':
--- 724,727 ----
***************
*** 765,775 ****
          test_linuxaudiodev
          test_locale
-         test_macfs
-         test_macostools
          test_mmap
          test_nis
          test_ntpath
          test_openpty
-         test_plistlib
          test_poll
          test_popen2
--- 745,752 ----
***************
*** 785,789 ****
          test_threading
          test_timing
-         test_unicode_file
          """,
      'darwin':
--- 762,765 ----
***************
*** 812,816 ****
          test_socketserver
          test_sunaudiodev
-         test_unicode_file
          """,
      'sunos5':
--- 788,791 ----
***************
*** 828,836 ****
          test_imgfile
          test_linuxaudiodev
-         test_macfs
-         test_macostools
          test_mpz
          test_openpty
-         test_plistlib
          test_socketserver
          test_zipfile
--- 803,808 ----
***************
*** 852,867 ****
          test_linuxaudiodev
          test_locale
-         test_macfs
-         test_macostools
          test_minidom
          test_nis
          test_ntpath
          test_openpty
-         test_plistlib
          test_pyexpat
          test_sax
          test_socketserver
          test_sunaudiodev
-         test_unicode_file
          test_zipfile
          test_zlib
--- 824,835 ----
***************
*** 881,891 ****
          test_linuxaudiodev
          test_locale
-         test_macfs
-         test_macostools
          test_mhlib
          test_mmap
          test_mpz
          test_nis
-         test_plistlib
          test_poll
          test_popen2
--- 849,856 ----
***************
*** 893,897 ****
          test_socketserver
          test_sunaudiodev
-         test_unicode_file
          """,
      'cygwin':
--- 858,861 ----
***************
*** 909,921 ****
          test_linuxaudiodev
          test_locale
-         test_macfs
-         test_macostools
          test_mpz
          test_nis
          test_ossaudiodev
-         test_plistlib
          test_socketserver
          test_sunaudiodev
-         test_unicode_file
          """,
      'os2emx':
--- 873,881 ----
***************
*** 935,940 ****
          test_largefile
          test_linuxaudiodev
-         test_macfs
-         test_macostools
          test_mhlib
          test_mmap
--- 895,898 ----
***************
*** 942,951 ****
          test_openpty
          test_ossaudiodev
-         test_plistlib
          test_pty
          test_resource
          test_signal
          test_sunaudiodev
-         test_unicode_file
          """,
  }
--- 900,907 ----
***************
*** 976,986 ****
  
              if not sys.platform in ("mac", "darwin"):
!                 self.expected.add("test_macostools")
!                 self.expected.add("test_macfs")
!                 self.expected.add("test_aepack")
  
              if sys.platform != "win32":
!                 self.expected.add("test_winreg")
!                 self.expected.add("test_winsound")
  
              self.valid = True
--- 932,945 ----
  
              if not sys.platform in ("mac", "darwin"):
!                 MAC_ONLY = ["test_macostools", "test_macfs", "test_aepack",
!                             "test_plistlib", "test_scriptpackages"]
!                 for skip in MAC_ONLY:
!                     self.expected.add(skip)
  
              if sys.platform != "win32":
!                 WIN_ONLY = ["test_unicode_file", "test_winreg",
!                             "test_winsound"]
!                 for skip in WIN_ONLY:
!                     self.expected.add(skip)
  
              self.valid = True