summaryrefslogtreecommitdiff
path: root/tests/tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.cpp')
-rw-r--r--tests/tests.cpp8
1 files changed, 7 insertions, 1 deletions
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
+}