t / t6004-rev-list-path-optim.shon commit clone: the given repository dir should be relative to $PWD (ced78b3)
   1#!/bin/sh
   2
   3test_description='git-rev-list trivial path optimization test'
   4
   5. ./test-lib.sh
   6
   7test_expect_success setup '
   8echo Hello > a &&
   9git add a &&
  10git commit -m "Initial commit" a
  11'
  12
  13test_expect_success path-optimization '
  14    commit=$(echo "Unchanged tree" | git-commit-tree "HEAD^{tree}" -p HEAD) &&
  15    test $(git-rev-list $commit | wc -l) = 2 &&
  16    test $(git-rev-list $commit -- . | wc -l) = 1
  17'
  18
  19test_done