summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog2
-rwxr-xr-xdebian/tests/regress4
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 571ff3ccc..8d7ca8f6a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,8 @@ openssh (1:7.4p1-3) UNRELEASED; urgency=medium
5 * Run regression tests using 'sh -x' to try to get more information about 5 * Run regression tests using 'sh -x' to try to get more information about
6 failures. 6 failures.
7 * Dump some useful log files if regression tests fail. 7 * Dump some useful log files if regression tests fail.
8 * Tweak regression test setup to cope with the case where some of the
9 source directory is unreadable by the openssh-tests user.
8 10
9 -- Colin Watson <cjwatson@debian.org> Sat, 31 Dec 2016 01:22:48 +0000 11 -- Colin Watson <cjwatson@debian.org> Sat, 31 Dec 2016 01:22:48 +0000
10 12
diff --git a/debian/tests/regress b/debian/tests/regress
index f3352e3d2..1576da97b 100755
--- a/debian/tests/regress
+++ b/debian/tests/regress
@@ -19,14 +19,14 @@ openssh-tests ALL = (ALL:ALL) NOPASSWD: ALL
19EOF 19EOF
20 chmod 440 /etc/sudoers.d/openssh-tests 20 chmod 440 /etc/sudoers.d/openssh-tests
21 mkdir -p "$TMP" 21 mkdir -p "$TMP"
22 chown openssh-tests:openssh-tests "$TMP" 22 cp -a . "$TMP/tree"
23 chown -R openssh-tests:openssh-tests "$TMP"
23 sudo -u openssh-tests env TMP="$TMP" "$0" "$@" 24 sudo -u openssh-tests env TMP="$TMP" "$0" "$@"
24 exit "$?" 25 exit "$?"
25fi 26fi
26 27
27# Don't use "make tests"; we want to test the installed version. 28# Don't use "make tests"; we want to test the installed version.
28 29
29cp -a . "$TMP/tree"
30cd "$TMP/tree" 30cd "$TMP/tree"
31 31
32# We aren't actually going to use most of this build, but we need a basic 32# We aren't actually going to use most of this build, but we need a basic