autopkgtest: Use 'stable' and 'testing'

Use the stable names instead of the codenames to reduce maintenance of
the autopkgtests.
This commit is contained in:
Roland Clobus 2024-11-02 18:28:40 +01:00
parent 30d39f812e
commit e4168673d1
No known key found for this signature in database
GPG Key ID: 62C57C6AA61495BD
2 changed files with 13 additions and 2 deletions

View File

@ -4,6 +4,12 @@ set -eu
set -o pipefail
cd "${AUTOPKGTEST_TMP}"
lb config --verbose --updates false --security false
# Use the default values
lb config --verbose
# Verify some values
lb config --dump | grep 'LB_DISTRIBUTION="testing"'
lb config --dump | grep 'LB_UPDATES="true"'
lb config --dump | grep 'LB_SECURITY="true"'
lb config --dump | grep 'LB_PROPOSED_UPDATES="false"'
lb build --verbose
ls -l

View File

@ -4,6 +4,11 @@ set -eu
set -o pipefail
cd "${AUTOPKGTEST_TMP}"
lb config --verbose --updates true --security true --distribution buster
# A minimal command line
lb config --verbose --distribution stable
# Verify some default values
lb config --dump | grep 'LB_UPDATES="true"'
lb config --dump | grep 'LB_SECURITY="true"'
lb config --dump | grep 'LB_PROPOSED_UPDATES="false"'
lb build --verbose
ls -l