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>
27 lines
696 B
Bash
Executable File
27 lines
696 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2010 Ævar Arnfjörð Bjarmason
|
|
#
|
|
|
|
test_description="The Git C functions aren't broken by setlocale(3)"
|
|
|
|
. ./lib-gettext.sh
|
|
|
|
test_expect_success 'git show a ISO-8859-1 commit under C locale' '
|
|
. "$TEST_DIRECTORY"/t3901/8859-1.txt &&
|
|
test_commit "iso-c-commit" iso-under-c &&
|
|
git show >out 2>err &&
|
|
test_must_be_empty err &&
|
|
grep -q "iso-c-commit" out
|
|
'
|
|
|
|
test_expect_success GETTEXT_LOCALE 'git show a ISO-8859-1 commit under a UTF-8 locale' '
|
|
. "$TEST_DIRECTORY"/t3901/8859-1.txt &&
|
|
test_commit "iso-utf8-commit" iso-under-utf8 &&
|
|
LANGUAGE=is LC_ALL="$is_IS_locale" git show >out 2>err &&
|
|
test_must_be_empty err &&
|
|
grep -q "iso-utf8-commit" out
|
|
'
|
|
|
|
test_done
|