diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-12-02 23:03:38 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-02 23:03:38 -0800 |
commit | afcc4f7767ad8a2daac1c816fad02c890b0d2b99 (patch) | |
tree | 2b1e6295e1dbabb867efa7364247d4dab1164cfd /t | |
parent | Merge branch 'js/export-with-assignment' (diff) | |
parent | Add "--expire <time>" option to 'git prune' (diff) | |
download | tgif-afcc4f7767ad8a2daac1c816fad02c890b0d2b99.tar.xz |
Merge branch 'js/prune-expire'
* js/prune-expire:
Add "--expire <time>" option to 'git prune'
Diffstat (limited to 't')
-rwxr-xr-x | t/t1410-reflog.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/t/t1410-reflog.sh b/t/t1410-reflog.sh index e5bbc384f7..f959aae846 100755 --- a/t/t1410-reflog.sh +++ b/t/t1410-reflog.sh @@ -175,4 +175,22 @@ test_expect_success 'recover and check' ' ' +test_expect_success 'prune --expire' ' + + before=$(git count-objects | sed "s/ .*//") && + BLOB=$(echo aleph | git hash-object -w --stdin) && + BLOB_FILE=.git/objects/$(echo $BLOB | sed "s/^../&\//") && + test $((1 + $before)) = $(git count-objects | sed "s/ .*//") && + test -f $BLOB_FILE && + git reset --hard && + git prune --expire=1.hour.ago && + test $((1 + $before)) = $(git count-objects | sed "s/ .*//") && + test -f $BLOB_FILE && + test-chmtime -86500 $BLOB_FILE && + git prune --expire 1.day && + test $before = $(git count-objects | sed "s/ .*//") && + ! test -f $BLOB_FILE + +' + test_done |