diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-02-16 10:06:21 +0900 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-02-16 10:06:21 +0900 |
commit | 8dc92e7d54e489b7d2978d0ef191c74c9efde27b (patch) | |
tree | 3380b75239dd540b77042b74f1951d61a12fecde /tests | |
parent | bf27a8a5282dab443335d8a8ab62cdf8fe1f6a95 (diff) |
No need for special handling of MinGW in tests build system
The checks are now done in test code itself.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index f448d8f..85c7527 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -13,14 +13,11 @@ noinst_PROGRAMS = pair_inproc \ invalid_rep \ msg_flags \ reconnect \ - linger - -if !ON_MINGW -noinst_PROGRAMS += shutdown_stress \ - pair_ipc \ - reqrep_ipc \ - timeo -endif + linger \ + shutdown_stress \ + pair_ipc \ + reqrep_ipc \ + timeo pair_inproc_SOURCES = pair_inproc.cpp testutil.hpp pair_tcp_SOURCES = pair_tcp.cpp testutil.hpp @@ -33,12 +30,9 @@ invalid_rep_SOURCES = invalid_rep.cpp msg_flags_SOURCES = msg_flags.cpp reconnect_SOURCES = reconnect.cpp linger_SOURCES = linger.cpp - -if !ON_MINGW shutdown_stress_SOURCES = shutdown_stress.cpp pair_ipc_SOURCES = pair_ipc.cpp testutil.hpp reqrep_ipc_SOURCES = reqrep_ipc.cpp testutil.hpp timeo_SOURCES = timeo.cpp -endif TESTS = $(noinst_PROGRAMS) |