[Python-checkins] r76994 - python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py

tarek.ziade python-checkins at python.org
Tue Dec 22 00:16:10 CET 2009


Author: tarek.ziade
Date: Tue Dec 22 00:16:09 2009
New Revision: 76994

Log:
forgot to add the win32 test in the unittest skip call

Modified:
   python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py

Modified: python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py
==============================================================================
--- python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py	(original)
+++ python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py	Tue Dec 22 00:16:09 2009
@@ -60,7 +60,7 @@
   </dependency>
 </assembly>"""
 
- at unittest.skip("These tests are only for win32")
+ at unittest.skipUnless(sys.platform=="win32", "These tests are only for win32")
 class msvc9compilerTestCase(support.TempdirManager,
                             unittest.TestCase):
 


More information about the Python-checkins mailing list