[Python-checkins] r84926 - python/branches/py3k/Lib/test/test_sysconfig.py

barry.warsaw python-checkins at python.org
Mon Sep 20 21:12:07 CEST 2010


Author: barry.warsaw
Date: Mon Sep 20 21:12:07 2010
New Revision: 84926

Log:
test_get_makefile_filename() is not compatible with Windows.


Modified:
   python/branches/py3k/Lib/test/test_sysconfig.py

Modified: python/branches/py3k/Lib/test/test_sysconfig.py
==============================================================================
--- python/branches/py3k/Lib/test/test_sysconfig.py	(original)
+++ python/branches/py3k/Lib/test/test_sysconfig.py	Mon Sep 20 21:12:07 2010
@@ -234,6 +234,8 @@
         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)


More information about the Python-checkins mailing list