mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
ec10b018e7
Using 'test_must_be_empty' is preferable to '! test -s', because it gives a helpful error message if the given file is unexpectedly not empty, while the latter remains completely silent. Furthermore, it also catches cases when the given file unexpectedly does not exist at all. This patch was basically created by: sed -i -e 's/! test -s/test_must_be_empty/' t[0-9]*.sh with the following notable exceptions: - The '! test -s' check in '.gitmodules ignore=dirty suppresses submodules with untracked content' in 't7508-status.sh' is left as-is, because it's bogus and, therefore, it's subject of a dedicated patch. - The '! test -s' checks in 't9131-git-svn-empty-symlink.sh' and 't9135-git-svn-moved-branch-empty-file.sh' are immediately preceeded by a 'test -f' to ensure that the files exist in the first place. 'test_must_be_empty' ensures that as well, so those 'test -f' commands are removed as well. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
20 lines
434 B
Bash
Executable file
20 lines
434 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='test moved svn branch with missing empty files'
|
|
|
|
. ./lib-git-svn.sh
|
|
test_expect_success 'load svn dumpfile' '
|
|
svnadmin load "$rawsvnrepo" < "${TEST_DIRECTORY}/t9135/svn.dump"
|
|
'
|
|
|
|
test_expect_success 'clone using git svn' 'git svn clone -s "$svnrepo" x'
|
|
|
|
test_expect_success 'test that b1 exists and is empty' '
|
|
(
|
|
cd x &&
|
|
git reset --hard origin/branch-c &&
|
|
test_must_be_empty b1
|
|
)
|
|
'
|
|
|
|
test_done
|