diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2014-09-29 12:49:23 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-09-29 12:49:23 +0200 |
commit | 79035529e0b585f29869ce8f0a164b659419a71a (patch) | |
tree | 3ee106d01c3109b363efdcff776859cfecee6d9d | |
parent | 38963e73e2d22f8e5ac9b168191db87062e139e6 (diff) | |
download | zsh-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-x | debian/rules | 4 |
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 |