diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-02-18 02:21:42 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-02-18 02:21:42 +0100 |
commit | fdf3a27ca9f44d0c5597b2d1a018b02f09ba8602 (patch) | |
tree | 70dd59574abf2bc0c9f9cd7f0e37cf25f936324b /t/t5411/common-functions.sh | |
parent | Merge branch 'js/fsck-name-objects-fix' (diff) | |
parent | t5411: refactor check of refs using test_cmp_refs (diff) | |
download | git-fdf3a27ca9f44d0c5597b2d1a018b02f09ba8602.tar.xz git-fdf3a27ca9f44d0c5597b2d1a018b02f09ba8602.zip |
Merge branch 'jx/t5411-unique-filenames'
Avoid individual tests in t5411 from getting affected by each other
by forcing them to use separate output files during the test.
* jx/t5411-unique-filenames:
t5411: refactor check of refs using test_cmp_refs
t5411: use different out file to prevent overwriting
Diffstat (limited to 't/t5411/common-functions.sh')
-rw-r--r-- | t/t5411/common-functions.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/t/t5411/common-functions.sh b/t/t5411/common-functions.sh index 13107fcdb6..6694858e18 100644 --- a/t/t5411/common-functions.sh +++ b/t/t5411/common-functions.sh @@ -58,3 +58,18 @@ filter_out_user_friendly_and_stable_output () { make_user_friendly_and_stable_output | sed -n ${1+"$@"} } + +test_cmp_refs () { + indir= + if test "$1" = "-C" + then + shift + indir="$1" + shift + fi + indir=${indir:+"$indir"/} + cat >show-ref.expect && + git ${indir:+ -C "$indir"} show-ref >show-ref.pristine && + make_user_friendly_and_stable_output <show-ref.pristine >show-ref.filtered && + test_cmp show-ref.expect show-ref.filtered +} |