diff options
| author | brian m. carlson <sandals@crustytoothpaste.net> | 2020-05-13 00:53:41 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-05-12 22:36:17 -0700 |
| commit | a1142963710fd71e5e6e0feb0c4020e977301af7 (patch) | |
| tree | e3d52e91b14c7be8ccfe0bc748e02385b67c2b66 /t/test-lib.sh | |
| parent | b994622632154fc3b17fb40a38819ad954a5fb88 (diff) | |
| download | git-a1142963710fd71e5e6e0feb0c4020e977301af7.tar.gz | |
t1050: match object ID paths in a hash-insensitive way
The pattern here looking for failures is specific to SHA-1. Let's
create a variable that matches the regex or glob pattern for a path
within the objects directory.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
| -rw-r--r-- | t/test-lib.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index baf94546da..77e9a60fcb 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -1428,6 +1428,7 @@ test_oid_init ZERO_OID=$(test_oid zero) OID_REGEX=$(echo $ZERO_OID | sed -e 's/0/[0-9a-f]/g') +OIDPATH_REGEX=$(test_oid_to_path $ZERO_OID | sed -e 's/0/[0-9a-f]/g') EMPTY_TREE=$(test_oid empty_tree) EMPTY_BLOB=$(test_oid empty_blob) _z40=$ZERO_OID |
