t9020: use configured Python to run the test helper
commit5a029666858d11e66eb689bba1c6435e8b9d0979
authorJunio C Hamano <gitster@pobox.com>
Wed, 19 Dec 2012 04:41:15 +0000 (18 20:41 -0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 19 Dec 2012 15:46:59 +0000 (19 07:46 -0800)
tree4ff934dc507be51ddec286b81134144b7a4459b9
parent2d3ac9ad67b7038e1046dad3b1a273ba29282f31
t9020: use configured Python to run the test helper

The test helper svnrdump_sim.py is used as "svnrdump" during the
execution of this test, but the arrangement was not optimal:

 - it relied on symbolic links;
 - unportable "export VAR=VAL" was used;
 - GIT_BUILD_DIR variable was not quoted correctly;
 - it assumed that the Python interpreter is in /usr/bin/ and
   called "python" (i.e. not "python2.7" etc.)

Rework this by writing a small shell script that spawns the right
Python interpreter, using the right quoting.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9020-remote-svn.sh