summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/tests.cpp b/tests/tests.cpp
index 1d1ebbe..bcccd15 100644
--- a/tests/tests.cpp
+++ b/tests/tests.cpp
@@ -91,14 +91,14 @@
#include "max_sockets.cpp"
#undef XS_TEST_MAIN
-#define XS_TEST_MAIN reentrant
-#include "reentrant.cpp"
-#undef XS_TEST_MAIN
-
#define XS_TEST_MAIN emptyctx
#include "emptyctx.cpp"
#undef XS_TEST_MAIN
+#define XS_TEST_MAIN polltimeo
+#include "polltimeo.cpp"
+#undef XS_TEST_MAIN
+
int main ()
{
int rc;
@@ -133,10 +133,10 @@ int main ()
assert (rc == 0);
rc = max_sockets ();
assert (rc == 0);
- rc = reentrant ();
- assert (rc == 0);
rc = emptyctx ();
assert (rc == 0);
+ rc = polltimeo ();
+ assert (rc == 0);
fprintf (stderr, "SUCCESS\n");
xs_sleep (1);