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
|
# MUNGE tests/Makefile.am
#
# This file is part of the MUNGE Uid 'N' Gid Emporium (MUNGE).
# For details, see <https://github.com/dun/munge>.
include $(top_srcdir)/Make-inc.mk
TEST_EXTENSIONS = .t
T_LOG_DRIVER = \
env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/build-aux/tap-driver.sh
TESTS = \
0001-env-vars.t \
0002-smiple.t \
0010-basic.t \
0011-munged-cmdline.t \
0012-munge-cmdline.t \
0013-unmunge-cmdline.t \
0015-mungekey-cmdline.t \
0021-munged-valgrind.t \
0022-munge-valgrind.t \
0023-unmunge-valgrind.t \
0025-mungekey-valgrind.t \
0099-credential-decode.t \
0100-munged-lock.t \
0101-munged-security-socket.t \
0102-munged-security-keyfile.t \
0103-munged-security-logfile.t \
0104-munged-security-pidfile.t \
0105-munged-security-seedfile.t \
0110-munged-origin-addr.t \
1000-chaos-rpm.t \
# End of TESTS
EXTRA_DIST = \
$(TESTS) \
0099-credential-decode.cred \
0099-credential-decode.key \
0099-credential-decode.out \
lib-sharness \
sharness.d \
sharness.sh \
valgrind.supp \
# End of EXTRA_DIST
clean-local:
-rm -rf test-results
-rm -rf trash*directory.*
|