Win32: fix detection of empty directories in is_dir_empty
[git/dscho.git] / t / t4208-log-magic-pathspec.sh
blob2c482b622b4a9e68bb0614dec8e156d5dfc8fa06
1 #!/bin/sh
3 test_description='magic pathspec tests using git-log'
5 . ./test-lib.sh
7 test_expect_success 'setup' '
8 test_commit initial &&
9 test_tick &&
10 git commit --allow-empty -m empty &&
11 mkdir sub
14 test_expect_success '"git log :/" should be ambiguous' '
15 test_must_fail git log :/ 2>error &&
16 grep ambiguous error
19 test_expect_success '"git log :" should be ambiguous' '
20 test_must_fail git log : 2>error &&
21 grep ambiguous error
24 test_expect_success 'git log -- :' '
25 git log -- :
28 test_expect_success 'git log HEAD -- :/' '
29 cat >expected <<-EOF &&
30 24b24cf initial
31 EOF
32 (cd sub && git log --oneline HEAD -- :/ >../actual) &&
33 test_cmp expected actual
36 test_done