diff options
author | Denton Liu <liu.denton@gmail.com> | 2019-09-05 15:10:05 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-09-06 11:10:36 -0700 |
commit | bd482d6e3348fe369b3b1db2dadbca278a0f0025 (patch) | |
tree | baba73254541c919d66fbedc1481191fcbaffbcf /t/test-lib.sh | |
parent | 745f6812895b31c02b29bdfe4ae8e5498f776c26 (diff) | |
download | git-bd482d6e3348fe369b3b1db2dadbca278a0f0025.tar.gz |
t: use common $SQ variable
In many test scripts, there are bespoke definitions of the single quote
that are some variation of this:
SQ="'"
Define a common $SQ variable in test-lib.sh and replace all usages of
these bespoke variables with the common one.
This change was done by running `git grep =\"\'\" t/` and
`git grep =\\\\\'` and manually changing the resulting definitions and
corresponding usages.
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index a9d45642a5..ee602c4d9c 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -509,6 +509,9 @@ EMPTY_BLOB=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 LF=' ' +# Single quote +SQ=\' + # UTF-8 ZERO WIDTH NON-JOINER, which HFS+ ignores # when case-folding filenames u200c=$(printf '\342\200\214') |