summaryrefslogtreecommitdiff
path: root/tests/emptyctx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/emptyctx.cpp')
-rw-r--r--tests/emptyctx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/emptyctx.cpp b/tests/emptyctx.cpp
index 1448254..0c95446 100644
--- a/tests/emptyctx.cpp
+++ b/tests/emptyctx.cpp
@@ -27,9 +27,9 @@ int XS_TEST_MAIN ()
// 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 ();
- assert (ctx);
+ errno_assert (ctx);
int rc = xs_term (ctx);
- assert (rc == 0);
+ errno_assert (rc == 0);
return 0 ;
}