OSDN Git Service

git-p4 tests: time_in_seconds should use $PYTHON_PATH
authorLuke Diamand <luke@diamand.org>
Tue, 26 Apr 2016 07:51:01 +0000 (08:51 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 26 Apr 2016 17:48:32 +0000 (10:48 -0700)
The time_in_seconds script should use $PYTHON_PATH, rather than
just hard-coded python, so that users can override which version
gets used, as is done for other python invocations.

Signed-off-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-git-p4.sh

index 7393ee2..012d40e 100644 (file)
@@ -50,7 +50,7 @@ native_path() {
 # at runtime (e.g. via NTP). The 'clock_gettime(CLOCK_MONOTONIC)'
 # function could fix that but it is not in Python until 3.3.
 time_in_seconds() {
-       (cd / && python -c 'import time; print(int(time.time()))')
+       (cd / && "$PYTHON_PATH" -c 'import time; print(int(time.time()))')
 }
 
 # Try to pick a unique port: guess a large number, then hope