From: Jason Tishler Date: Thu, 5 Dec 2002 15:18:15 +0000 (+0000) Subject: Patch #551977: Regression exceptions for cygwin X-Git-Tag: v2.3c1~3121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25115940604e6051aa2fb16be88c6b8f64577251;p=python Patch #551977: Regression exceptions for cygwin 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. --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 75f8230dbb..71f7216e12 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -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: