summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2014-09-29 12:49:23 +0200
committerAxel Beckert <abe@deuxchevaux.org>2014-09-29 12:49:23 +0200
commit79035529e0b585f29869ce8f0a164b659419a71a (patch)
tree3ee106d01c3109b363efdcff776859cfecee6d9d
parent38963e73e2d22f8e5ac9b168191db87062e139e6 (diff)
downloadzsh-79035529e0b585f29869ce8f0a164b659419a71a.tar.gz
zsh-79035529e0b585f29869ce8f0a164b659419a71a.zip
Set ZTST_verbose=1 to get more details about where exactly the test suite hangs
Suggested by Bart Schaefer in #760061
-rwxr-xr-xdebian/rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules
index 10a3b0924..7a2ea5776 100755
--- a/debian/rules
+++ b/debian/rules
@@ -53,7 +53,7 @@ build: build-arch build-indep
build-arch: configure-stamp
dh_auto_build -B obj --parallel
if dpkg-architecture -qDEB_BUILD_ARCH_OS | grep -qv hurd; then \
- HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj --parallel; \
+ HOME="$(CURDIR)/obj/testhome" ZTST_verbose=1 dh_auto_test -B obj --parallel; \
fi
touch $@
@@ -64,7 +64,7 @@ build-indep: configure-stamp
build-static: configure-static-stamp
dh_testdir
dh_auto_build -B obj-static --parallel
- HOME="$(CURDIR)/obj-static/testhome" dh_auto_test -B obj-static --parallel || true
+ HOME="$(CURDIR)/obj-static/testhome" ZTST_verbose=1 dh_auto_test -B obj-static --parallel || true
touch $@
build-debug: DEB_BUILD_OPTIONS+=debug