[Checkins] SVN: zc.buildout/trunk/src/zc/buildout/tests.py On Macs, the python executable has a capital P, so make this test case-insensitive.

Martijn Pieters mj at zopatista.com
Tue Feb 12 04:01:45 EST 2008


Log message for revision 83761:
  On Macs, the python executable has a capital P, so make this test case-insensitive.

Changed:
  U   zc.buildout/trunk/src/zc/buildout/tests.py

-=-
Modified: zc.buildout/trunk/src/zc/buildout/tests.py
===================================================================
--- zc.buildout/trunk/src/zc/buildout/tests.py	2008-02-12 08:39:53 UTC (rev 83760)
+++ zc.buildout/trunk/src/zc/buildout/tests.py	2008-02-12 09:01:43 UTC (rev 83761)
@@ -2599,7 +2599,7 @@
                zc.buildout.testing.normalize_egg_py,
                (re.compile('__buildout_signature__ = recipes-\S+'),
                 '__buildout_signature__ = recipes-SSSSSSSSSSS'),
-               (re.compile('executable = \S+python\S*'),
+               (re.compile('executable = \S+python\S*', re.I),
                 'executable = python'),
                (re.compile('[-d]  setuptools-\S+[.]egg'), 'setuptools.egg'),
                (re.compile('zc.buildout(-\S+)?[.]egg(-link)?'),



More information about the Checkins mailing list