Commit 581a8749 authored by mj's avatar mj

On Macs, the python executable has a capital P, so make this test case-insensitive.

git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@83761 62d5b8a3-27da-0310-9561-8e5933582275
parent e2773e5d
......@@ -2599,7 +2599,7 @@ def test_suite():
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)?'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment