send-email: squelch warning due to comparing undefined $_ to ""
[git/dscho.git] / t / t5304-prune.sh
blob6560af756e7b4df0c7777e818edc86854f74b973
1 #!/bin/sh
3 # Copyright (c) 2008 Johannes E. Schindelin
6 test_description='prune'
7 . ./test-lib.sh
9 test_expect_success setup '
11 : > file &&
12 git add file &&
13 test_tick &&
14 git commit -m initial &&
15 git gc
19 test_expect_success 'prune stale packs' '
21 orig_pack=$(echo .git/objects/pack/*.pack) &&
22 : > .git/objects/tmp_1.pack &&
23 : > .git/objects/tmp_2.pack &&
24 test-chmtime -86501 .git/objects/tmp_1.pack &&
25 git prune --expire 1.day &&
26 test -f $orig_pack &&
27 test -f .git/objects/tmp_2.pack &&
28 ! test -f .git/objects/tmp_1.pack
32 test_done