autopkgtest: Use 'stable' and 'testing'
Use the stable names instead of the codenames to reduce maintenance of the autopkgtests.
This commit is contained in:
parent
30d39f812e
commit
e4168673d1
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue