]> git.ipfire.org Git - thirdparty/git.git/commitdiff
test: use test_must_be_empty F instead of test_cmp empty F
authorRené Scharfe <l.s.r@web.de>
Wed, 27 Nov 2019 07:51:43 +0000 (08:51 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 Nov 2019 10:05:27 +0000 (19:05 +0900)
Use test_must_be_empty instead of comparing it to an empty file.  That's
more efficient, as the function only needs built-in meta-data only check
in the usual case, and provides nicer debug output otherwise.

Helped-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1011-read-tree-sparse-checkout.sh
t/t9010-svn-fe.sh

index ba71b159ba8ce1aae9c13d470bdceb7963da58da..eb44bafb5937000bd3b918d476b519e893f7e94d 100755 (executable)
@@ -215,7 +215,6 @@ test_expect_success 'read-tree adds to worktree, dirty case' '
 '
 
 test_expect_success 'index removal and worktree narrowing at the same time' '
-       >empty &&
        echo init.t >.git/info/sparse-checkout &&
        echo sub/added >>.git/info/sparse-checkout &&
        git checkout -f top &&
@@ -223,7 +222,7 @@ test_expect_success 'index removal and worktree narrowing at the same time' '
        git checkout removed &&
        git ls-files sub/added >result &&
        test ! -f sub/added &&
-       test_cmp empty result
+       test_must_be_empty result
 '
 
 test_expect_success 'read-tree --reset removes outside worktree' '
index 0b20b07e689897326c0060ec2181f6a09fca9797..c90fdc5c8940164c6bf0eacdf9f7ac2e3b0e02ec 100755 (executable)
@@ -53,8 +53,6 @@ text_no_props () {
        printf "%s\n" "$text"
 }
 
->empty
-
 test_expect_success 'empty dump' '
        reinit_git &&
        echo "SVN-fs-dump-format-version: 2" >input &&
@@ -208,7 +206,7 @@ test_expect_failure 'timestamp and empty file' '
        test_cmp expect.date actual.date &&
        test_cmp expect.files actual.files &&
        git checkout HEAD empty-file &&
-       test_cmp empty file
+       test_must_be_empty file
 '
 
 test_expect_success 'directory with files' '