diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2012-07-26 15:39:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-27 10:11:14 -0700 |
commit | 5b0b5dd49b55e474a2df502902682853e2cd6e9d (patch) | |
tree | 72d0eeb3ea55b952bcc637a6871993115aa30209 /t/README | |
parent | t0050: use the SYMLINKS test prereq (diff) | |
download | tgif-5b0b5dd49b55e474a2df502902682853e2cd6e9d.tar.xz |
test-lib: provide UTF8 behaviour as a prerequisite
UTF8 behaviour of the filesystem (conversion from nfd to nfc) plays a
role in several tests and is tested in several tests. Therefore, move
the test from t0050 into the test lib and use the prerequisite in t0050.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/README')
-rw-r--r-- | t/README | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -629,6 +629,11 @@ use these, and "test_set_prereq" for how to define your own. Test is run on a case insensitive file system. + - UTF8_NFD_TO_NFC + + Test is run on a filesystem which converts decomposed utf-8 (nfd) + to precomposed utf-8 (nfc). + Tips for Writing Tests ---------------------- |