diff options
author | Loïc Minier <lool@dooz.org> | 2010-01-30 22:37:00 +0100 |
---|---|---|
committer | Loïc Minier <lool@dooz.org> | 2010-01-30 22:37:00 +0100 |
commit | e776cded7597afc72ef1a2d6d890abba13e727e1 (patch) | |
tree | eb90e842cf4409c3d0a594dba74617f685b57691 /test_pbuilder-apt-config | |
parent | b4b19c4010644fd3734c8ed6607c92e539730d54 (diff) | |
download | pbuilder-e776cded7597afc72ef1a2d6d890abba13e727e1.tar pbuilder-e776cded7597afc72ef1a2d6d890abba13e727e1.tar.gz |
pbuilder-selftest: run tests after install
Diffstat (limited to 'test_pbuilder-apt-config')
-rwxr-xr-x | test_pbuilder-apt-config | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/test_pbuilder-apt-config b/test_pbuilder-apt-config index 07de2c7..dd529cb 100755 --- a/test_pbuilder-apt-config +++ b/test_pbuilder-apt-config @@ -4,7 +4,22 @@ set -e self="$(basename "$0")" -. ./testlib.sh +# if this is set, use pbuilder files from this location; otherwise, use +# installed files (from PBUILDER_TEST_ROOT, which is a copy of PBUILDER_ROOT) +PBUILDER_CHECKOUT="${PBUILDER_CHECKOUT:-}" + +if [ -n "$PBUILDER_CHECKOUT" ]; then + . "$PBUILDER_CHECKOUT/testlib.sh" + + PBUILDER_APT_CONFIG="$PBUILDER_CHECKOUT/pbuilder-apt-config" +else + # these currently don't need to be exported + PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" + PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" + . "$PBUILDER_TEST_PKGLIBDIR/testlib.sh" + + PBUILDER_APT_CONFIG="$PBUILDER_TEST_PKGLIBDIR/pbuilder-apt-config" +fi mirror_map="" @@ -29,15 +44,15 @@ debian-archive EOF run_suite_mode() { - ./pbuilder-apt-config --mirror-map="$mirror_map" --with-sources=no --mirror mirror --suite suite --components component apt-sources "$@" + "$PBUILDER_APT_CONFIG" --mirror-map="$mirror_map" --with-sources=no --mirror mirror --suite suite --components component apt-sources "$@" } debootstrap_suite() { - ./pbuilder-apt-config --mirror-map="$mirror_map" --with-sources=no --mirror mirror --components component debootstrap-suite "$@" + "$PBUILDER_APT_CONFIG" --mirror-map="$mirror_map" --with-sources=no --mirror mirror --components component debootstrap-suite "$@" } debootstrap_mirror() { - ./pbuilder-apt-config --mirror-map="$mirror_map" --with-sources=no --components component debootstrap-mirror "$@" + "$PBUILDER_APT_CONFIG" --mirror-map="$mirror_map" --with-sources=no --components component debootstrap-mirror "$@" } test_components() { @@ -66,7 +81,7 @@ strip_mirror() { test_profile() { local profile="$1" - ./pbuilder-apt-config --with-sources=no --profile "$profile" --components comp1 apt-sources | strip_mirror + "$PBUILDER_APT_CONFIG" --with-sources=no --profile "$profile" --components comp1 apt-sources | strip_mirror } test_fail() { |