summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 23:16:09 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 23:16:09 (GMT)
commit95ccac776d4446b9874367e27f276bdfb304f1bf (patch)
treec661c977f4c7997bc8b7f080b1f6b955b8a4ec42 /Lib/distutils
parentc60ea329a4f40791139c24fbb25c8514cc40eeb2 (diff)
downloadcpython-95ccac776d4446b9874367e27f276bdfb304f1bf.zip
cpython-95ccac776d4446b9874367e27f276bdfb304f1bf.tar.gz
cpython-95ccac776d4446b9874367e27f276bdfb304f1bf.tar.bz2
forgot to add the win32 test in the unittest skip call
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/tests/test_msvc9compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_msvc9compiler.py b/Lib/distutils/tests/test_msvc9compiler.py
index e1f08d8..8a908d9 100644
--- a/Lib/distutils/tests/test_msvc9compiler.py
+++ b/Lib/distutils/tests/test_msvc9compiler.py
@@ -60,7 +60,7 @@ _CLEANED_MANIFEST = """\
</dependency>
</assembly>"""
-@unittest.skip("These tests are only for win32")
+@unittest.skipUnless(sys.platform=="win32", "These tests are only for win32")
class msvc9compilerTestCase(support.TempdirManager,
unittest.TestCase):