summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-01-29 16:24:16 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-01-29 16:24:16 (GMT)
commit6afc5e02fa775517fa0b6455906a8c203baf9cd2 (patch)
tree3fb817b2919765dd97c039de0185c3af6947f996 /Lib/test/regrtest.py
parent5445594e20baf1ac0c0c1aef30d55d789c4b9694 (diff)
downloadcpython-6afc5e02fa775517fa0b6455906a8c203baf9cd2.zip
cpython-6afc5e02fa775517fa0b6455906a8c203baf9cd2.tar.gz
cpython-6afc5e02fa775517fa0b6455906a8c203baf9cd2.tar.bz2
- The mac-specific tests should also be run on darwin.
- Added test_aepack to the mac/darwin specific tests.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-xLib/test/regrtest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 6b12c45..e734bf9 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -915,9 +915,10 @@ class _ExpectedSkips:
if test_socket_ssl.skip_expected:
self.expected.add('test_socket_ssl')
- if sys.platform != "mac":
+ 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")