From: Tim Peters Date: Mon, 17 Feb 2003 21:48:48 +0000 (+0000) Subject: test_posix is an expected skip on Win32. Also fixed test_posix to X-Git-Tag: v2.3c1~1815 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=003eb3088283927e3155f2e2317d3d516edd9645;p=thirdparty%2FPython%2Fcpython.git test_posix is an expected skip on Win32. Also fixed test_posix to import from test.test_support instead of directly from test_support. --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 00847fcf8c1d..534906432122 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -572,6 +572,7 @@ _expectations = { test_openpty test_ossaudiodev test_poll + test_posix test_pty test_pwd test_resource diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 0989e938d3b8..d20a7dbc4b55 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -1,6 +1,6 @@ "Test posix functions" -from test_support import TestSkipped, TestFailed, TESTFN, run_suite +from test.test_support import TestSkipped, TestFailed, TESTFN, run_suite try: import posix