summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2018-09-28 18:04:03 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2018-09-28 18:04:03 +0100
commitdf4419b77d5e231b7861a03542a22e36b0cda065 (patch)
treea520b2e848e379fe98b5a874485ae540ec2fede5
parente439ec13f6645a1f84b31cc09bfa5e6fbc1b8fc2 (diff)
test suite: t-check-only-bpd: Check $tmp/.. not ..
The test might call t-ok in $p, say, or in $tmp. The effect of this bug was that in tests where t-ok was called in $tmp, it looked in $tmp/.. which might contain anything, rather than $tmp as intended. That means the test was not effective. Also it causes a spurious failure of t-import-nonnative in the Ubuntu CI infrastructure, where $AUTOPKGTEST_TMP/../autopkgtest-satdep.deb happens to exist. Reported-by: Mattia Rizzolo <mattia@debian.org> Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
-rw-r--r--tests/lib4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib b/tests/lib
index 57b9e38..a4f307f 100644
--- a/tests/lib
+++ b/tests/lib
@@ -407,8 +407,8 @@ t-git-fsck () {
t-check-only-bpd () {
if [ "$bpd" = .. ]; then return; fi
t-files-notexist \
- ../*.{deb,changes,dsc,buildinfo} \
- ../*.{tar,diff}.*
+ $tmp/*.{deb,changes,dsc,buildinfo} \
+ $tmp/*.{tar,diff}.*
}
t-fscks () {