[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn trunk r17244: FAIL (x86_64-unknown-linux-gnu static ra_svn fsfs)

From: Madan U Sreenivasan <madan_at_collab.net>
Date: 2005-11-09 18:36:24 CET

On Wed, 2005-11-09 at 22:54, Malcolm Rowe wrote:
> On Wed, Nov 09, 2005 at 10:46:28PM +0530, Madan U Sreenivasan wrote:
> > Index: subversion/tests/clients/cmdline/commit_tests.py
> > ===================================================================
> > + post_commit_hook_code = ( "#!"+ sys.executable +"\n"
> > + "import sys\n"
> > + "\n"
> > + "sys.stderr.write('Post-commit Hook says nothing "
> > + "doing on stderr')\n"
> > + "sys.exit(-1)\n")
> > + svntest.main.create_python_hook_script (post_commit_hook,
> > + post_commit_hook_code)
> > +
>
> > Index: subversion/tests/clients/cmdline/svntest/main.py
> > ===================================================================
> > +# Parameters : hook_name - full path of the target
> > +# hook file to be created.
>
> nit: on Windows, you're suffixing '.py' and '.bat' to this path, so it's
> not really the "full path" as described.
>
> > +# hook_script_code - python code for
> > +# the hook.
> > +def create_python_hook_script (hook_name, hook_script_code):
> > + if sys.platform == 'win32':
> > + # on windows, create a batch file wrapper to the python script
> > + hook_py = os.path.join (hook_name, ".py")
> > + hook = os.path.join (hook_name, ".bat")
> > + # fill the python file
> > + file_append (hook_py,
> > + "#!"+ sys.executable +"\n")
>
> Why are you prefixing the hook code with a shebang line again? It already
> has one.
thats a mistake... we need to use sys.executable as you say... wheres my
wits?! thats what I was *thinking* but what I typed was something
else...:/
Thanks,
Madan.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Nov 9 18:28:44 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.