Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-p4 tests: cd to / before running python
author
Luke Diamand
<luke@diamand.org>
Tue, 26 Apr 2016 07:50:59 +0000
(08:50 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 26 Apr 2016 17:47:02 +0000
(10:47 -0700)
The python one-liner for getting the current time prints out
error messages if the current directory is deleted while it is
running if using python3.
Avoid these messages by switching to "/" before running it.
This problem does not arise if using python2.
Signed-off-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-git-p4.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
6a66362
)
diff --git
a/t/lib-git-p4.sh
b/t/lib-git-p4.sh
index f9ae1d780dceb526fcfbce2684e3e7dc9b06f5eb..724bc43e4b81acf8446cfde3ca6c490f5534e3f0 100644
(file)
--- a/
t/lib-git-p4.sh
+++ b/
t/lib-git-p4.sh
@@
-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() {
- python -c 'import time; print int(time.time())'
+ (cd / && python -c 'import time; print(int(time.time()))')
}
# Try to pick a unique port: guess a large number, then hope