From: Junio C Hamano Date: Wed, 13 Dec 2017 21:28:56 +0000 (-0800) Subject: Merge branch 'tg/t-readme-updates' X-Git-Tag: v2.16.0-rc0~60 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/d22512e0191dfceec72fadc6f2ad3690d4f9ca56?ds=inline;hp=-c Merge branch 'tg/t-readme-updates' Developer doc updates. * tg/t-readme-updates: t/README: document test_cmp_rev t/README: remove mention of adding copyright notices --- d22512e0191dfceec72fadc6f2ad3690d4f9ca56 diff --combined t/README index 599cd9808c,e867d1f8bd..b3f7b449c3 --- a/t/README +++ b/t/README @@@ -332,13 -332,10 +332,10 @@@ Writing Test ------------- The test script is written as a shell script. It should start - with the standard "#!/bin/sh" with copyright notices, and an + with the standard "#!/bin/sh", and an assignment to variable 'test_description', like this: #!/bin/sh - # - # Copyright (c) 2005 Junio C Hamano - # test_description='xxx test (option --frotz) @@@ -677,6 -674,11 +674,11 @@@ library for your script to use file. This behaves like "cmp" but produces more helpful output when the test is run with "-v" option. + - test_cmp_rev + + Check whether the rev points to the same commit as the + rev. + - test_line_count (= | -lt | -ge | ...) Check whether a file has the length it is expected to. @@@ -808,18 -810,6 +810,18 @@@ use these, and "test_set_prereq" for ho Git was compiled with support for PCRE. Wrap any tests that use git-grep --perl-regexp or git-grep -P in these. + - LIBPCRE1 + + Git was compiled with PCRE v1 support via + USE_LIBPCRE1=YesPlease. Wrap any PCRE using tests that for some + reason need v1 of the PCRE library instead of v2 in these. + + - LIBPCRE2 + + Git was compiled with PCRE v2 support via + USE_LIBPCRE2=YesPlease. Wrap any PCRE using tests that for some + reason need v2 of the PCRE library instead of v1 in these. + - CASE_INSENSITIVE_FS Test is run on a case insensitive file system.