diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-29 16:24:16 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-29 16:24:16 (GMT) |
commit | 6afc5e02fa775517fa0b6455906a8c203baf9cd2 (patch) | |
tree | 3fb817b2919765dd97c039de0185c3af6947f996 /Lib/test | |
parent | 5445594e20baf1ac0c0c1aef30d55d789c4b9694 (diff) | |
download | cpython-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')
-rwxr-xr-x | Lib/test/regrtest.py | 3 |
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") |