]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
test_get_makefile_filename() is not compatible with Windows.
authorBarry Warsaw <barry@python.org>
Mon, 20 Sep 2010 19:12:07 +0000 (19:12 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 20 Sep 2010 19:12:07 +0000 (19:12 +0000)
Lib/test/test_sysconfig.py

index e509989f8635b2b1ab0e3a3cbf5b636ac187829d..241f365d4dd3cc1b7631dd4d86f70a32854c7f25 100644 (file)
@@ -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)