summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_msvc9compiler.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-11-06 02:44:43 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-11-06 02:44:43 (GMT)
commit70ec44a7739e67dbdaa8ab9b0a59a9444153112a (patch)
tree5d49959adafdacd5abc7431271dc8d95f253e431 /Lib/distutils/tests/test_msvc9compiler.py
parent1c5054996fcb7af6831eb1fea2df3678fb23e986 (diff)
downloadcpython-70ec44a7739e67dbdaa8ab9b0a59a9444153112a.zip
cpython-70ec44a7739e67dbdaa8ab9b0a59a9444153112a.tar.gz
cpython-70ec44a7739e67dbdaa8ab9b0a59a9444153112a.tar.bz2
Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)
Diffstat (limited to 'Lib/distutils/tests/test_msvc9compiler.py')
-rw-r--r--Lib/distutils/tests/test_msvc9compiler.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_msvc9compiler.py b/Lib/distutils/tests/test_msvc9compiler.py
index 40cb8be..45bae77 100644
--- a/Lib/distutils/tests/test_msvc9compiler.py
+++ b/Lib/distutils/tests/test_msvc9compiler.py
@@ -5,6 +5,7 @@ import os
from distutils.errors import DistutilsPlatformError
from distutils.tests import support
+from test.support import run_unittest
_MANIFEST = """\
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
@@ -137,4 +138,4 @@ def test_suite():
return unittest.makeSuite(msvc9compilerTestCase)
if __name__ == "__main__":
- unittest.main(defaultTest="test_suite")
+ run_unittest(test_suite())