summaryrefslogtreecommitdiff
path: root/tests/tests.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:10:27 +0900
committerMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:10:27 +0900
commit741b0774f729c8934b00009bc76e3842a0610cc1 (patch)
tree99fb89b831613590877ae3f544005be755e9b66e /tests/tests.cpp
parent24cf53ad6eaa0eb9a873b909e932d95417f52d2c (diff)
emptyctx test added
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
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
+}