Merge "Increase func testing for ubuntu-minimal element"

This commit is contained in:
Jenkins 2016-12-21 04:03:57 +00:00 committed by Gerrit Code Review
commit 9ee7acc5ee
7 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1 @@
export DIB_RELEASE=precise

View File

@ -0,0 +1 @@
Verify we can build a ubuntu-minimal image.

View File

@ -0,0 +1 @@
export DIB_RELEASE=trusty

View File

@ -0,0 +1 @@
Verify we can build a ubuntu-minimal image.

View File

@ -0,0 +1 @@
export DIB_RELEASE=xenial

View File

@ -19,6 +19,7 @@ DEFAULT_SKIP_TESTS=(
# in non-voting # in non-voting
gentoo/build-succeeds gentoo/build-succeeds
opensuse/build-succeeds opensuse/build-succeeds
ubuntu-minimal/precise-build-succeeds
# good to have the test case around - but because of changes # good to have the test case around - but because of changes
# in testing does not work always. # in testing does not work always.
debian-minimal/testing-build-succeeds debian-minimal/testing-build-succeeds
@ -194,7 +195,12 @@ while getopts ":hlj:t" opt; do
echo "The available functional tests are:" echo "The available functional tests are:"
echo echo
for t in ${TESTS[@]}; do for t in ${TESTS[@]}; do
echo " $t" echo -n " $t"
if [[ " ${DEFAULT_SKIP_TESTS[@]} " =~ " ${t} " ]]; then
echo " [skip]"
else
echo " [run]"
fi
done done
echo echo
exit 0 exit 0