1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
TESTS = \
test-action.sh \
test-alias.sh \
test-break.sh \
test-columns.sh \
test-dbg-opts.sh \
test-examine.sh \
test-file.sh \
test-filecache.sh \
test-fns.sh \
test-frame.sh \
test-get-sourceline.sh \
test-journal.sh \
test-msg.sh \
test-pre.sh \
test-run.sh \
test-save-restore.sh \
test-setshow.sh \
test-sort.sh \
test-tty.sh \
test-validate.sh
check_DATA = shunit2
abs_srcdir=@abs_srcdir@
abs_builddir=@abs_builddir@
TESTS_ENVIRONMENT = \
srcdir="$(abs_srcdir)" \
builddir="$(abs_builddir)"
EXTRA_DIST = $(TESTS) $(check_DATA) \
test-action.sh.in \
test-alias.sh.in \
test-break.sh.in \
test-columns.sh.in \
test-dbg-opts.sh.in \
test-examine.sh.in \
test-file.sh.in \
test-filecache.sh.in \
test-fns.sh.in \
test-frame.sh.in \
test-get-sourceline.sh.in \
test-journal.sh.in \
test-msg.sh.in \
test-pre.sh.in \
test-run.sh.in \
test-save-restore.sh.in \
test-setshow.sh.in \
test-sort.sh.in \
test-tty.sh.in \
test-validate.sh.in
test: check
test-unit: check
|