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 56 57 58 59 60 61 62 63 64 65 66
|
check_DATA = \
brkpt1.tests \
brkpt2.tests \
brkpt3.tests \
check-common.sh.in \
interrupt.tests \
interrupt-3.tests \
lopts.tests \
multi.sh \
setshow.tests \
settrace.tests \
sig.sh \
sig.tests \
sopts.tests \
subshell1.tests \
subshell2.tests \
subshell3.tests \
subshell4.tests \
trace.tests \
trace2.tests
TESTS = \
test-action \
test-brkpt \
test-bug-args \
test-bugI \
test-bugIFS \
test-bug-source \
test-command \
test-complete \
test-debug \
test-enable \
test-display \
test-finish \
test-frame \
test-interrupt \
test-list \
test-lopts \
test-misc \
test-multi \
test-parm \
test-restart \
test-search \
test-setshow \
test-settrace \
test-sig \
test-skip \
test-sopts \
test-bug-step \
test-bug-step-subshell \
test-subshell \
test-tbreak \
test-trace \
test-watch1 \
test-watch2
TESTS_ENVIRONMENT = \
srcdir="$(abs_srcdir)" \
builddir="$(abs_builddir)"
abs_srcdir=@abs_srcdir@
abs_builddir=@abs_builddir@
EXTRA_DIST = $(TESTS) $(check_DATA) README
test: check
|