From 0a2d478c3e4ccf600a70e8e91f176734f4414f44 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sun, 24 Nov 2024 20:56:34 -0600 Subject: [PATCH] [autopkgtest] Use snaps that are available on all arches, to fix armhf, ppc64el, and s390x failures. --- debian/changelog | 7 +++++++ debian/tests/snapd-seed-glue | 12 ++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index ebabf06..fb31d46 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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. diff --git a/debian/tests/snapd-seed-glue b/debian/tests/snapd-seed-glue index 00616bd..8014677 100755 --- a/debian/tests/snapd-seed-glue +++ b/debian/tests/snapd-seed-glue @@ -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..."