[Python-checkins] r64408 - python/trunk/Lib/test/regrtest.py

amaury.forgeotdarc python-checkins at python.org
Thu Jun 19 21:57:39 CEST 2008


Author: amaury.forgeotdarc
Date: Thu Jun 19 21:57:39 2008
New Revision: 64408

Log:
test_macos can be skipped on non-mac platforms.


Modified:
   python/trunk/Lib/test/regrtest.py

Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Thu Jun 19 21:57:39 2008
@@ -1128,7 +1128,7 @@
                 self.expected.add('test_imageop')
 
             if not sys.platform in ("mac", "darwin"):
-                MAC_ONLY = ["test_macostools", "test_aepack",
+                MAC_ONLY = ["test_macos", "test_macostools", "test_aepack",
                             "test_plistlib", "test_scriptpackages",
                             "test_applesingle"]
                 for skip in MAC_ONLY:


More information about the Python-checkins mailing list