From: Barry Warsaw Date: Mon, 20 Sep 2010 19:12:07 +0000 (+0000) Subject: test_get_makefile_filename() is not compatible with Windows. X-Git-Tag: v3.2a3~194 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0646b4bb77a5955407e4174e9fac56447dc958f7;p=thirdparty%2FPython%2Fcpython.git test_get_makefile_filename() is not compatible with Windows. --- diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py index e509989f8635..241f365d4dd3 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)