The test 'pack-refs does not crash with -h' checks that the command exits cleanly with usage information, both inside and outside of a repository. Move this test from "t0610-reftable-basics.sh" to "t1517-outside-repo.sh" since it better fits with tests that check command behavior outside a repository. Suggested-by: Patrick Steinhardt <ps@xxxxxx> Signed-off-by: Usman Akinyemi <usmanakinyemi202@xxxxxxxxx> --- t/t0610-reftable-basics.sh | 7 ------- t/t1517-outside-repo.sh | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/t/t0610-reftable-basics.sh b/t/t0610-reftable-basics.sh index 3ea5d51532..ffd8ecc0ce 100755 --- a/t/t0610-reftable-basics.sh +++ b/t/t0610-reftable-basics.sh @@ -14,13 +14,6 @@ export GIT_TEST_DEFAULT_REF_FORMAT INVALID_OID=$(test_oid 001) -test_expect_success 'pack-refs does not crash with -h' ' - test_expect_code 129 git pack-refs -h >usage && - test_grep "[Uu]sage: git pack-refs " usage && - test_expect_code 129 nongit git pack-refs -h >usage && - test_grep "[Uu]sage: git pack-refs " usage -' - test_expect_success 'init: creates basic reftable structures' ' test_when_finished "rm -rf repo" && git init repo && diff --git a/t/t1517-outside-repo.sh b/t/t1517-outside-repo.sh index e04be2d811..5b4373f8cd 100755 --- a/t/t1517-outside-repo.sh +++ b/t/t1517-outside-repo.sh @@ -135,4 +135,11 @@ test_expect_success 'ls-files does not crash with -h' ' test_grep "[Uu]sage: git ls-files " usage ' +test_expect_success 'pack-refs does not crash with -h' ' + test_expect_code 129 git pack-refs -h >usage && + test_grep "[Uu]sage: git pack-refs " usage && + test_expect_code 129 nongit git pack-refs -h >usage && + test_grep "[Uu]sage: git pack-refs " usage +' + test_done -- 2.50.0