3 test_description
='basic git gc tests
8 test_expect_success
'gc empty repository' '
12 test_expect_success
'gc does not leave behind pid file' '
14 test_path_is_missing .git/gc.pid
17 test_expect_success
'gc --gobbledegook' '
18 test_expect_code 129 git gc --nonsense 2>err &&
19 test_i18ngrep "[Uu]sage: git gc" err
22 test_expect_success
'gc -h with invalid configuration' '
27 echo "[gc] pruneexpire = CORRUPT" >>.git/config &&
28 test_expect_code 129 git gc -h >usage 2>&1
30 test_i18ngrep "[Uu]sage" broken/usage
33 test_expect_success
'gc is not aborted due to a stale symref' '
37 test_commit initial &&
38 git clone . ../client &&
39 git branch -m develop &&