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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
## $Id: Makefile.am,v 1.11 2006/07/20 02:30:55 vlg Exp $
##
##
EXTRA_DIST = \
Makefile.am \
defs \
defs.with_debug \
ttcp_20test.pl \
ttcp_loop.pl \
ttcp_test.pl \
pqtest.sh \
TEST_TEMPLATE \
${TESTS}
TESTS_ENVIRONMENT = top_builddir=$(top_builddir)
CPPFLAGS = -I$(top_srcdir)
LDFLAGS = -static @WIN32_EXTRA_LDFLAGS@
LDADD = $(top_builddir)/assa/libassa-@ASSA_RELEASE@.la @WIN32_EXTRA_LIBADD@
testsubdir = testSubDir
if SELF_TESTS_ENABLED
noinst_PROGRAMS = \
regexp_test \
inifile_test \
glops_test \
logger_test \
memdump_test \
genserver_test \
timeval_test \
pipe_test smoker \
autoptr_test \
common_utils_test \
connector_test \
fdset_test \
idset_test \
fork_test \
inet_address_test \
pidflock_test \
pq_test \
reactor_test \
rt_test \
semaphore_test \
sighands_test \
sighand_test \
timer_queue_test \
bufio_testc bufio_tests \
echoxdr_testc echoxdr_tests daytime \
ttcp_assa \
charinbuffer_test \
echos \
connector2_test \
sb_tests \
sb_testc
endif
# Simple tests
#
autoptr_test_SOURCES = autoptr_test.cpp
glops_test_SOURCES = glops_test.cpp
common_utils_test_SOURCES = common_utils_test.cpp
connector_test_SOURCES = connector_test.cpp
idset_test_SOURCES = idset_test.cpp
fdset_test_SOURCES = fdset_test.cpp
fork_test_SOURCES = fork_test.cpp
genserver_test_SOURCES = genserver_test.cpp
inet_address_test_SOURCES = inet_address_test.cpp
logger_test_SOURCES = logger_test.cpp
memdump_test_SOURCES = memdump_test.cpp
pidflock_test_SOURCES = pidflock_test.cpp
pq_test_SOURCES = pq_test.cpp
reactor_test_SOURCES = reactor_test.cpp
rt_test_SOURCES = rt_test.cpp
semaphore_test_SOURCES = semaphore_test.cpp
sighands_test_SOURCES = sighands_test.cpp
sighand_test_SOURCES = sighand_test.cpp
timer_queue_test_SOURCES = timer_queue_test.cpp
timeval_test_SOURCES = timeval_test.cpp
charinbuffer_test_SOURCES = charinbuffer_test.cpp
regexp_test_SOURCES = regexp_test.cpp
inifile_test_SOURCES = inifile_test.cpp
# Client/Server tests
#
bufio_testc_SOURCES = bufio_testc.cpp
bufio_tests_SOURCES = bufio_tests.cpp
pipe_test_SOURCES = pipe_test.cpp
smoker_SOURCES = smoker.cpp
echoxdr_testc_SOURCES = echoxdr_testc.cpp
echoxdr_tests_SOURCES = echoxdr_tests.cpp
daytime_SOURCES = daytime.cpp
ttcp_assa_SOURCES = ttcp_assa.cpp
# ttcp_SOURCES = ttcp.c
echos_SOURCES = echos.cpp
connector2_test_SOURCES = connector2_test.cpp
sb_tests_SOURCES = sb_tests.cpp
sb_testc_SOURCES = sb_testc.cpp
# Test scripts (drivers)
#
TESTS = \
autoptr.test \
bufio.test \
charinbuffer.test \
common_utils.test \
connector.test \
echoxdr.test \
fdset.test \
fork.test \
genserver.test \
glops.test \
idset.test \
inet_address.test \
logger.test \
memdump.test \
pidflock.test \
pipe.test \
pq.test \
reactor.test \
rt.test \
semaphore.test \
sighands.test \
sighand.test \
timer_queue.test \
timeval.test \
connector2.test \
regexp.test \
inifile.test
# uncon_udp_socket.test
clean-local:
-rm -f log *.log *.log.0 *~ *.dat core core* *.conf
-rm -rf $(testsubdir)
|