]> granicus.if.org Git - python/commitdiff
Patch #551977: Regression exceptions for cygwin
authorJason Tishler <jason@tishler.net>
Thu, 5 Dec 2002 15:18:15 +0000 (15:18 +0000)
committerJason Tishler <jason@tishler.net>
Thu, 5 Dec 2002 15:18:15 +0000 (15:18 +0000)
This patch updates regrtest.py to understand which
tests are normally skipped under Cygwin. The list of
tests was verified with the Cygwin Python maintainer.

Lib/test/regrtest.py

index 75f8230dbba5eaa6562e081a2963edd1365b01de..71f7216e12b04d631f648806ab8d08b63abff35b 100755 (executable)
@@ -852,6 +852,28 @@ _expectations = {
         test_winreg
         test_winsound
         """,
+    'cygwin':
+        """
+        test_al
+        test_cd
+        test_cl
+        test_curses
+        test_dbm
+        test_email_codecs
+        test_gl
+        test_imgfile
+        test_largefile
+        test_linuxaudiodev
+        test_locale
+        test_mpz
+        test_nis
+        test_socket_ssl
+        test_socketserver
+        test_sunaudiodev
+        test_unicode_file
+        test_winreg
+        test_winsound
+        """,
 }
 
 class _ExpectedSkips: