tests: enclose $PERL_PATH in double quotes

Otherwise it will be split at a space after "Program" when it is set
to "\\Program Files\perl" or something silly like that.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano
2012-06-12 09:49:59 -07:00
parent 770bf6c5e2
commit 7096b6486e
24 changed files with 41 additions and 41 deletions

View File

@ -76,11 +76,11 @@ test_decode_color () {
}
nul_to_q () {
$PERL_PATH -pe 'y/\000/Q/'
"$PERL_PATH" -pe 'y/\000/Q/'
}
q_to_nul () {
$PERL_PATH -pe 'y/Q/\000/'
"$PERL_PATH" -pe 'y/Q/\000/'
}
q_to_cr () {