Merge branch 'eb/t1016-hash-transition-fix'

Test fix.

* eb/t1016-hash-transition-fix:
  t1016-compatObjectFormat: really freeze time for reproduciblity
main
Junio C Hamano 2025-11-04 07:48:09 -08:00
commit 55e8615d18
2 changed files with 7 additions and 1 deletions

View File

@ -21,6 +21,12 @@ test_description='Test how well compatObjectFormat works'
# different hash functions result in the same content in the commits.
# This means that when the commit is translated between hash functions
# the commit is identical to the commit in the other repository.
#
# Similarly this test relies on:
# gpg --faked-system-time '20230918T154812!
# freezing the system time from gpg perspective so that two different
# runs of gpg applied to the same data result in identical signatures.
#

compat_hash () {
case "$1" in

View File

@ -1,2 +1,2 @@
#!/bin/sh
exec gpg --faked-system-time "20230918T154812" "$@"
exec gpg --faked-system-time '20230918T154812!' "$@"