summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib3
-rw-r--r--tests/lib-restricts2
-rwxr-xr-xtests/tests/build-modes-sbuild2
-rwxr-xr-xtests/tests/quilt-gbp-build-modes-sbuild2
-rwxr-xr-xtests/tests/sbuild-gitish2
5 files changed, 8 insertions, 3 deletions
diff --git a/tests/lib b/tests/lib
index 2771252..a297227 100644
--- a/tests/lib
+++ b/tests/lib
@@ -74,6 +74,9 @@ incoming = $tmp/incoming
run_dinstall = 0
END
+schroot=${DGIT_SCHROOT_CHROOT:-build}
+# Pretty much any Debian sid snapshot schroot will do.
+
: ${t_archive_method:=aq}
: ${tagpfx:=archive/test-dummy}
: ${suitespecs:=sid:unstable}
diff --git a/tests/lib-restricts b/tests/lib-restricts
index bb695c4..dfaaa25 100644
--- a/tests/lib-restricts
+++ b/tests/lib-restricts
@@ -13,6 +13,8 @@ t-restriction-x-dgit-git-only () {
}
t-restriction-x-dgit-schroot-build () {
+ # if DGIT_SCHROOT_CHROOT is set, user wants not to skip this test
+ if [ "x${DGIT_SCHROOT_CHROOT}" != x ]; then return 0; fi
schroot -l -c build 2>&1 >/dev/null || return 1
}
diff --git a/tests/tests/build-modes-sbuild b/tests/tests/build-modes-sbuild
index 19dcc8a..cda0783 100755
--- a/tests/tests/build-modes-sbuild
+++ b/tests/tests/build-modes-sbuild
@@ -9,7 +9,7 @@ t-restrict x-dgit-schroot-build
bm_quirk_after_act=bm-quirk-sbuild-after-act
bm-prep
-act="sbuild -c build --no-arch-all"
+act="sbuild -c $schroot --no-arch-all"
real_act="$act"
bm-guess-e-source-e-targets "$act"
diff --git a/tests/tests/quilt-gbp-build-modes-sbuild b/tests/tests/quilt-gbp-build-modes-sbuild
index 4c86bfe..ec1d1c7 100755
--- a/tests/tests/quilt-gbp-build-modes-sbuild
+++ b/tests/tests/quilt-gbp-build-modes-sbuild
@@ -7,6 +7,6 @@ t-dependencies sbuild
t-restrict x-dgit-schroot-build
bm-gbp-example-acts \
- 'sbuild -c build --arch-all' \
+ "sbuild -c $schroot --arch-all" \
t-ok
diff --git a/tests/tests/sbuild-gitish b/tests/tests/sbuild-gitish
index 6e497b2..da90b6f 100755
--- a/tests/tests/sbuild-gitish
+++ b/tests/tests/sbuild-gitish
@@ -16,7 +16,7 @@ buildrune=$(
next unless m/^ +\%/ .. 0;
next if !m/\S/ .. 0;
s/^ +\%//;
- $fixchr += s/(\s-c\s*)jessie(\s|$)/$1build$2/;
+ $fixchr += s/(\s-c\s*)jessie(\s|$)/$1'"$schroot"'$2/;
print or die $!;
END { $fixchr == 1 or die $fixchr; }
'