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
|
## Process this file with automake to produce Makefile.in -*-Makefile-*-.
#$Id: Makefile.am,v 1.17 2009/06/16 00:09:08 rockyb Exp $
if BUILD_BUILTINS
BUILTIN_TESTS=test-set0.sh
else
BUILTIN_TESTS=
endif
TESTS = $(BUILTIN_TESTS) \
test-alias.sh \
test-break.sh \
test-bashdb-trace.sh \
test-columns.sh \
test-file.sh \
test-fns.sh \
test-frame.sh \
test-io.sh \
test-msg.sh \
test-pre.sh \
test-run.sh \
test-sort.sh \
test-save-restore.sh
abs_srcdir=@abs_srcdir@
abs_builddir=@abs_builddir@
EXTRA_DIST = $(TESTS) shunit2 \
test-alias.sh.in \
test-bashdb-trace.sh.in \
test-break.sh.in \
test-columns.sh.in \
test-file.sh.in \
test-fns.sh.in \
test-frame.sh.in \
test-io.sh.in \
test-msg.sh.in \
test-pre.sh \
test-run.sh.in \
test-sort.sh.in \
test-save-restore.sh.in
|