diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2017-05-09 14:54:24 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-10 06:32:51 +0200 |
commit | 8a7f8bedf361f6af761863ee4ea6206f1cf3bc19 (patch) | |
tree | 51572f454a010b084a1b7c9e8ae61ced07646cbf /t/t3901 | |
parent | completion: mark bash script as LF-only (diff) | |
download | git-8a7f8bedf361f6af761863ee4ea6206f1cf3bc19.tar.xz git-8a7f8bedf361f6af761863ee4ea6206f1cf3bc19.zip |
t3901: move supporting files into t/t3901/
The current convention is to either generate files on the fly in tests,
or to use supporting files taken from a t/tNNNN/ directory (where NNNN
matches the test's number, or the number of the test from which we
borrow supporting files).
The test t3901-i18n-patch.sh was obviously introduced before that
convention was in full swing, hence its supporting files still lived in
t/t3901-8859-1.txt and t/t3901-utf8.txt, respectively.
Let's adjust to the current convention.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3901')
-rwxr-xr-x | t/t3901/8859-1.txt | 4 | ||||
-rwxr-xr-x | t/t3901/utf8.txt | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/t/t3901/8859-1.txt b/t/t3901/8859-1.txt new file mode 100755 index 0000000000..38c21a6a7f --- /dev/null +++ b/t/t3901/8859-1.txt @@ -0,0 +1,4 @@ +: to be sourced in t3901 -- this is latin-1 +GIT_AUTHOR_NAME="Αιν σϊ" && +GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME && +export GIT_AUTHOR_NAME GIT_COMMITTER_NAME diff --git a/t/t3901/utf8.txt b/t/t3901/utf8.txt new file mode 100755 index 0000000000..5f5205cd02 --- /dev/null +++ b/t/t3901/utf8.txt @@ -0,0 +1,4 @@ +: to be sourced in t3901 -- this is utf8 +GIT_AUTHOR_NAME="Γéà óú" && +GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME && +export GIT_AUTHOR_NAME GIT_COMMITTER_NAME |