summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2010-09-20 19:12:07 (GMT)
committerBarry Warsaw <barry@python.org>2010-09-20 19:12:07 (GMT)
commit0646b4bb77a5955407e4174e9fac56447dc958f7 (patch)
treeb22cb85d2069b7303f1fc19e2a6da3ecaf7e5d46 /Lib
parentebbef6fef2e1c70aaa23ee27dcfc237545dee5d5 (diff)
downloadcpython-0646b4bb77a5955407e4174e9fac56447dc958f7.zip
cpython-0646b4bb77a5955407e4174e9fac56447dc958f7.tar.gz
cpython-0646b4bb77a5955407e4174e9fac56447dc958f7.tar.bz2
test_get_makefile_filename() is not compatible with Windows.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_sysconfig.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py
index e509989..241f365 100644
--- a/Lib/test/test_sysconfig.py
+++ b/Lib/test/test_sysconfig.py
@@ -234,6 +234,8 @@ class TestSysConfig(unittest.TestCase):
config_h = sysconfig.get_config_h_filename()
self.assertTrue(os.path.isfile(config_h), config_h)
+ @unittest.skipIf(sys.platform.startswith('win'),
+ 'Test is not Windows compatible')
def test_get_makefile_filename(self):
makefile = sysconfig.get_makefile_filename()
self.assertTrue(os.path.isfile(makefile), makefile)