diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-10-22 01:41:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-10-22 01:46:54 +0200 |
commit | fa6566bdc02958823b342b86c7d88853542444ae (patch) | |
tree | 7beaa6e79cb27128e1d0f10b5f8cbf11a9f82cce /tests/guix-build-branch.sh | |
parent | 78d4a08ac3a1de481bc56eef967a2e5ed2a912d5 (diff) |
tests: 'guix build --with-commit' output no longer refers to the tag ID.
This is a followup to 46f7011591601b4783b2dc2c7252c41564ca0140.
* tests/guix-build-branch.sh: Replace tag ID by commit ID.
Diffstat (limited to 'tests/guix-build-branch.sh')
-rw-r--r-- | tests/guix-build-branch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/guix-build-branch.sh b/tests/guix-build-branch.sh index 79aa06a58f..7bf6a318ca 100644 --- a/tests/guix-build-branch.sh +++ b/tests/guix-build-branch.sh @@ -1,5 +1,5 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> +# Copyright © 2018, 2019, 2020, 2022 Ludovic Courtès <ludo@gnu.org> # # This file is part of GNU Guix. # @@ -54,7 +54,7 @@ test "$v0_1_0_drv" != "$orig_drv" v0_1_0_drv="`guix build guix --with-commit=guile-gcrypt=v0.1.0 -d`" guix gc -R "$v0_1_0_drv" | grep guile-gcrypt-0.1.0 -guix gc -R "$v0_1_0_drv" | grep guile-gcrypt-8fe64e8 # this is the tag ID +guix gc -R "$v0_1_0_drv" | grep guile-gcrypt-9e3eacd test "$v0_1_0_drv" != "$latest_drv" test "$v0_1_0_drv" != "$orig_drv" |