diff options
author | Martijn van Beurden <mvanb1@gmail.com> | 2022-04-20 21:47:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-20 21:47:07 +0200 |
commit | f579b163fe7ccdb0f713001d4253c5d68a3b8280 (patch) | |
tree | a085ae1b5080f292d6b469d1080d4546b348978e /test/test_metaflac.sh | |
parent | 1ca7b38f3c174a95e391b4251eebfc98ca66fd17 (diff) | |
download | flac-f579b163fe7ccdb0f713001d4253c5d68a3b8280.tar.gz |
Add git commit tag, hash and date to vendor string when available
In some circles (Hydrogenaud.io for example) people share binaries
compiled from git, i.e. inbetween official releases. Files created
with these binaries cannot be discerned from others. To improve
troubleshooting, compiles from a git repository are marked with
the commit hash and date when configured with autotools or CMake
Diffstat (limited to 'test/test_metaflac.sh')
-rwxr-xr-x | test/test_metaflac.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test_metaflac.sh b/test/test_metaflac.sh index 3df56a4e..28e4dbf5 100755 --- a/test/test_metaflac.sh +++ b/test/test_metaflac.sh @@ -147,7 +147,11 @@ run_metaflac --set-tag="TITLE=He_who_smelt_it_dealt_it" $flacfile check_flac metaflac_test case06 "--set-tag=TITLE" "--list" -metaflac_test case07 "--show-vendor-tag --show-tag=ARTIST" "--show-vendor-tag --show-tag=ARTIST" +if [ ! $git_commit_version_hash ] ; then + metaflac_test case07 "--show-vendor-tag --show-tag=ARTIST" "--show-vendor-tag --show-tag=ARTIST" +else + echo "test case07 is skipped because version is taken from git" +fi run_metaflac --remove-first-tag=ARTIST $flacfile check_flac |