diff options
Diffstat (limited to 'Lib')
-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") |