summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorJason Tishler <jason@tishler.net>2002-12-05 15:18:15 (GMT)
committerJason Tishler <jason@tishler.net>2002-12-05 15:18:15 (GMT)
commit25115940604e6051aa2fb16be88c6b8f64577251 (patch)
tree74813eb98c51810279e085524d0c48312736eaf6 /Lib/test/regrtest.py
parentda760c488fd5f36293abc7dd3ebbf9d62b8d3b5c (diff)
downloadcpython-25115940604e6051aa2fb16be88c6b8f64577251.zip
cpython-25115940604e6051aa2fb16be88c6b8f64577251.tar.gz
cpython-25115940604e6051aa2fb16be88c6b8f64577251.tar.bz2
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.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-xLib/test/regrtest.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 75f8230..71f7216 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: