[autopkgtest] Use snaps that are available on all arches, to fix armhf, ppc64el, and s390x failures.

This commit is contained in:
Simon Quigley 2024-11-24 20:56:34 -06:00
parent 238feccf3f
commit 0a2d478c3e
2 changed files with 13 additions and 6 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
snapd-extra-utils (1.0.4) UNRELEASED; urgency=medium
* [autopkgtest] Use snaps that are available on all arches, to fix armhf,
ppc64el, and s390x failures.
-- Simon Quigley <tsimonq2@ubuntu.com> Sun, 24 Nov 2024 20:55:54 -0600
snapd-extra-utils (1.0.3) plucky; urgency=medium
* In snapd-seed-glue, remove redundant decoding/encoding for account key.

View File

@ -14,19 +14,19 @@ confirm_success () {
fi
}
echo "Testing snapd-seed-glue with firefox..."
echo "Testing snapd-seed-glue with hello..."
/usr/bin/snapd-seed-glue --verbose --seed firefox_test firefox > >(tee -a "$OUTPUT_FILE") 2>&1
/usr/bin/snapd-seed-glue --verbose --seed hello_test hello > >(tee -a "$OUTPUT_FILE") 2>&1
confirm_success
echo "Add krita to the same seed..."
echo "Add htop to the same seed..."
/usr/bin/snapd-seed-glue --verbose --seed firefox_test firefox krita > >(tee -a "$OUTPUT_FILE") 2>&1
/usr/bin/snapd-seed-glue --verbose --seed hello_test hello htop > >(tee -a "$OUTPUT_FILE") 2>&1
confirm_success
echo "Remove krita and replace it with Thunderbird..."
echo "Remove htop and replace it with btop..."
/usr/bin/snapd-seed-glue --verbose --seed firefox_test firefox thunderbird > >(tee -a "$OUTPUT_FILE") 2>&1
/usr/bin/snapd-seed-glue --verbose --seed hello_test hello btop > >(tee -a "$OUTPUT_FILE") 2>&1
confirm_success
echo "Confirm that non-existent snaps will fail..."