t/test-lib: introduce OID_REGEX
commitbd981d5fc33677b4f074bac309ce64b39ba9d02e
authorbrian m. carlson <sandals@crustytoothpaste.net>
Sun, 13 May 2018 02:24:14 +0000 (13 02:24 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 14 May 2018 02:02:01 +0000 (14 11:02 +0900)
tree71bcb62f8cf722c867f70d30df5a0e70bc102615
parent8125a58b912e52eba7889e1dba9fe6d711b0ffdf
t/test-lib: introduce OID_REGEX

Currently we have a variable, $_x40, which contains a regex that matches
a full 40-character hex constant.  However, with NewHash, we'll have
object IDs that are longer than 40 characters.  In such a case, $_x40
will be a confusing name.  Create a $OID_REGEX variable which will
always reflect a regex matching the appropriate object ID, regardless of
the length of the current hash.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/test-lib.sh