diff options
author | Martin Sustrik <sustrik@250bpm.cpm> | 2012-02-16 10:06:26 +0900 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-02-16 10:06:26 +0900 |
commit | 0d384b7944c20f3389c2be9363afac99783d776a (patch) | |
tree | d822fba1515fe42a6a315418689f9a8d285abad1 /tests | |
parent | 8dc92e7d54e489b7d2978d0ef191c74c9efde27b (diff) |
Windows test system improved
Signed-off-by: Martin Sustrik <sustrik@250bpm.cpm>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/linger.cpp | 8 | ||||
-rw-r--r-- | tests/reconnect.cpp | 9 | ||||
-rw-r--r-- | tests/tests.cpp | 7 |
3 files changed, 24 insertions, 0 deletions
diff --git a/tests/linger.cpp b/tests/linger.cpp index a9feec3..f76be39 100644 --- a/tests/linger.cpp +++ b/tests/linger.cpp @@ -20,6 +20,13 @@ #include "testutil.hpp" +#if defined XS_HAVE_WINDOWS +int XS_TEST_MAIN () +{ + return 0; +} +#else + int XS_TEST_MAIN () { fprintf (stderr, "linger test running...\n"); @@ -57,3 +64,4 @@ int XS_TEST_MAIN () return 0; } +#endif
\ No newline at end of file diff --git a/tests/reconnect.cpp b/tests/reconnect.cpp index 6442b38..09eefd4 100644 --- a/tests/reconnect.cpp +++ b/tests/reconnect.cpp @@ -20,6 +20,13 @@ #include "testutil.hpp" +#if defined XS_HAVE_WINDOWS +int XS_TEST_MAIN () +{ + return 0; +} +#else + int XS_TEST_MAIN () { fprintf (stderr, "reconnect test running...\n"); @@ -85,3 +92,5 @@ int XS_TEST_MAIN () return 0 ; } + +#endif
\ No newline at end of file diff --git a/tests/tests.cpp b/tests/tests.cpp index dc55e97..1a3a2e0 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -21,8 +21,12 @@ // This file is used only in MSVC build. // It gathers all the tests into a single executable. +#include "testutil.hpp" + #include <assert.h> +#undef XS_TEST_MAIN + #define XS_TEST_MAIN hwm #include "hwm.cpp" #undef XS_TEST_MAIN @@ -116,5 +120,8 @@ int main () rc = timeo (); assert (rc == 0); + fprintf (stderr, "SUCCESS\n"); + xs_sleep (1); + return 0; }
\ No newline at end of file |