From d50e4892a3ca351cdec4c3c106749e024781c4de Mon Sep 17 00:00:00 2001 From: hpk Date: Mon, 23 Mar 2009 02:23:17 +0100 Subject: [PATCH] [svn r63218] temporary fix for the issue that rsync does not synchronize executable bits yet. --HG-- branch : trunk --- py/cmdline/testing/test_generic.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/py/cmdline/testing/test_generic.py b/py/cmdline/testing/test_generic.py index 9267eeb2d..1f6218322 100644 --- a/py/cmdline/testing/test_generic.py +++ b/py/cmdline/testing/test_generic.py @@ -24,6 +24,9 @@ def checkprocess(script): cmd = script.basename else: cmd = "%s" %(script, ) + # XXX distributed testing's rsync does not support + # syncing executable bits + script.chmod(0777) if script.basename.startswith("py.lookup") or \ script.basename.startswith("py.which"):