summaryrefslogtreecommitdiff
path: root/tests/tests.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.cpm>2012-02-16 10:06:17 +0900
committerMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:06:17 +0900
commitbf27a8a5282dab443335d8a8ab62cdf8fe1f6a95 (patch)
tree837bbb218bc7c0b07766752d025e6bea293d3316 /tests/tests.cpp
parent802d84df533c131f91fbc599dae915390fad3e2b (diff)
Windows version of the tests implemented
Signed-off-by: Martin Sustrik <sustrik@250bpm.cpm>
Diffstat (limited to 'tests/tests.cpp')
-rw-r--r--tests/tests.cpp120
1 files changed, 120 insertions, 0 deletions
diff --git a/tests/tests.cpp b/tests/tests.cpp
new file mode 100644
index 0000000..dc55e97
--- /dev/null
+++ b/tests/tests.cpp
@@ -0,0 +1,120 @@
+/*
+ Copyright (c) 2012 250bpm s.r.o.
+ Copyright (c) 2012 Other contributors as noted in the AUTHORS file
+
+ This file is part of Crossroads project.
+
+ Crossroads is free software; you can redistribute it and/or modify it under
+ the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ Crossroads is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+// This file is used only in MSVC build.
+// It gathers all the tests into a single executable.
+
+#include <assert.h>
+
+#define XS_TEST_MAIN hwm
+#include "hwm.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN invalid_rep
+#include "invalid_rep.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN linger
+#include "linger.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN msg_flags
+#include "msg_flags.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN pair_inproc
+#include "pair_inproc.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN pair_ipc
+#include "pair_ipc.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN pair_tcp
+#include "pair_tcp.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN reconnect
+#include "reconnect.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN reqrep_device
+#include "reqrep_device.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN reqrep_inproc
+#include "reqrep_inproc.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN reqrep_ipc
+#include "reqrep_ipc.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN reqrep_tcp
+#include "reqrep_tcp.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN shutdown_stress
+#include "shutdown_stress.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN sub_forward
+#include "sub_forward.cpp"
+#undef XS_TEST_MAIN
+
+#define XS_TEST_MAIN timeo
+#include "timeo.cpp"
+#undef XS_TEST_MAIN
+
+int main ()
+{
+ int rc;
+
+ rc = hwm ();
+ assert (rc == 0);
+ rc = invalid_rep ();
+ assert (rc == 0);
+ rc = linger ();
+ assert (rc == 0);
+ rc = msg_flags ();
+ assert (rc == 0);
+ rc = pair_inproc ();
+ assert (rc == 0);
+ rc = pair_ipc ();
+ assert (rc == 0);
+ rc = reconnect ();
+ assert (rc == 0);
+ rc = reqrep_device ();
+ assert (rc == 0);
+ rc = reqrep_inproc ();
+ assert (rc == 0);
+ rc = reqrep_ipc ();
+ assert (rc == 0);
+ rc = reqrep_tcp ();
+ assert (rc == 0);
+ rc = shutdown_stress ();
+ assert (rc == 0);
+ rc = sub_forward ();
+ assert (rc == 0);
+ rc = timeo ();
+ assert (rc == 0);
+
+ return 0;
+} \ No newline at end of file