diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2014-09-14 22:55:02 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-09-14 22:55:02 +0200 |
commit | 0ef12ed3cb844d90ed681ba879bb86207bf2323e (patch) | |
tree | dcaf996c010e861c8b45695b162a1d852b6406e1 | |
parent | 283a12c1b27b70da968b9ba70e4cd51a85d509a2 (diff) | |
download | zsh-0ef12ed3cb844d90ed681ba879bb86207bf2323e.tar.gz zsh-0ef12ed3cb844d90ed681ba879bb86207bf2323e.zip |
Add test-suite wrapper and adequate test for DEP8 as-installed testing
-rwxr-xr-x | debian/tests/adequate | 6 | ||||
-rw-r--r-- | debian/tests/control | 5 | ||||
-rwxr-xr-x | debian/tests/run-testsuite | 58 |
3 files changed, 69 insertions, 0 deletions
diff --git a/debian/tests/adequate b/debian/tests/adequate new file mode 100755 index 000000000..1792a984a --- /dev/null +++ b/debian/tests/adequate @@ -0,0 +1,6 @@ +#!/bin/sh + +# Very simple test to run adequate on all zsh packages. To be used with +# Debian's autopkgtest package. Author: Axel Beckert <abe@debian.org> + +adequate `awk '$1 == "Package:" {print $2}' < debian/control` >&2 diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 000000000..e722554bc --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,5 @@ +Tests: run-testsuite +Depends: zsh + +Tests: adequate +Depends: @, adequate diff --git a/debian/tests/run-testsuite b/debian/tests/run-testsuite new file mode 100755 index 000000000..10d3b7b5c --- /dev/null +++ b/debian/tests/run-testsuite @@ -0,0 +1,58 @@ +#!/bin/sh + +set -e + +# Run zsh's test suite on installed zsh +# +# Code based upon check/test target in Test/Makefile.in + +#if test -n "$(DLLD)"; then +# cd $(dir_top) && DESTDIR= $(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules +#fi + +if [ -z "$ADTTMP" -o ! -d "$ADTTMP" ]; then + echo '$ADTTMP ("'"$ADTTMP"'") is not set or not a directory' 1>&2 + exit 2 +fi + +ZTST_testdir="$ADTTMP/Test" +export ZTST_testdir + +cp -pvr Test "$ZTST_testdir" +cp -pvr Misc "$ADTTMP/Misc" +cd "$ADTTMP" + +ln -vfs /usr/lib/*/zsh/*.*.* "$ZTST_testdir/Modules" +ln -vfs /usr/share/zsh/functions Functions +ln -vfs /usr/share/zsh/functions/Completion . +mkdir -pv Src +for f in /bin/zsh*; do + ln -vfs "$f" Src/ +done + +cd "$ZTST_testdir" + +# For now skip a bunch of tests which require artefacts from the build +# config.modules maybe mocked by creating it from the installed modules. +rm -v V01zmodload.ztst + +# Drop explicit fpath setting from some files +for f in ztst.zsh comptest; do + perl -E 'local $/; my $code = <>; $code =~ s{\n *fpath=\(.*?\n\n}{\n\n}s; print $code' -i $f +done + +ZTST_testlist="`for f in $ZTST_testdir/$TESTNUM*.ztst; do echo $f; done`" \ +ZTST_srcdir="$ZTST_testdir" +ZTST_exe=/bin/zsh +export ZTST_testlist +export ZTST_srcdir +export ZTST_exe + +if "$ZTST_exe" +Z -f "$ZTST_testdir/runtests.zsh"; then + stat=0 +else + stat=1 +fi +sleep 1 +rm -rf Modules .zcompdump +exit $$stat |