diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/emptyctx.cpp | 35 | ||||
-rw-r--r-- | tests/tests.cpp | 8 |
2 files changed, 42 insertions, 1 deletions
diff --git a/tests/emptyctx.cpp b/tests/emptyctx.cpp new file mode 100644 index 0000000..2801c5f --- /dev/null +++ b/tests/emptyctx.cpp @@ -0,0 +1,35 @@ +/* + 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/>. +*/ + +#include "testutil.hpp" + +int XS_TEST_MAIN () +{ + fprintf (stderr, "emptyctx test running...\n"); + + // This is a very simple test to check whether everything works OK when + // context is terminated even before I/O threads were launched. + void *ctx = xs_init (1); + assert (ctx); + int rc = xs_term (ctx); + assert (rc == 0); + + return 0 ; +} diff --git a/tests/tests.cpp b/tests/tests.cpp index c447428..1d1ebbe 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -95,6 +95,10 @@ #include "reentrant.cpp" #undef XS_TEST_MAIN +#define XS_TEST_MAIN emptyctx +#include "emptyctx.cpp" +#undef XS_TEST_MAIN + int main () { int rc; @@ -131,9 +135,11 @@ int main () assert (rc == 0); rc = reentrant (); assert (rc == 0); + rc = emptyctx (); + assert (rc == 0); fprintf (stderr, "SUCCESS\n"); xs_sleep (1); return 0; -}
\ No newline at end of file +} |