about summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorLukas Fleischer2013-08-26 20:38:31 +0200
committerJason A. Donenfeld2013-08-26 21:01:11 +0200
commit370535fc70e87e465e0d6b39420b0b6a72056b37 (patch)
tree9d39703b4052bf9521dcf6e4335830899d5411ea /tests
parentgit: update to 1.8.4 (diff)
downloadcgit-370535fc70e87e465e0d6b39420b0b6a72056b37.tar.gz
cgit-370535fc70e87e465e0d6b39420b0b6a72056b37.zip
t0108: Avoid unnecessary fork()
Use `git rev-list --max-parents=0 HEAD` instead of `git rev-list HEAD |
tail -1` to get the root commit. This works since Git 1.7.4.2.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/t0108-patch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t0108-patch.sh b/tests/t0108-patch.sh index 3b5bae4..867d739 100755 --- a/tests/t0108-patch.sh +++ b/tests/t0108-patch.sh
@@ -24,7 +24,7 @@ test_expect_success 'find `cgit` signature' '
24' 24'
25 25
26test_expect_success 'find initial commit' ' 26test_expect_success 'find initial commit' '
27 root=$(git --git-dir="$PWD/repos/foo/.git" rev-list HEAD | tail -1) 27 root=$(git --git-dir="$PWD/repos/foo/.git" rev-list --max-parents=0 HEAD)
28' 28'
29 29
30test_expect_success 'generate patch for initial commit' ' 30test_expect_success 'generate patch for initial commit' '