summaryrefslogtreecommitdiff
path: root/nuttx/examples/ostest/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/examples/ostest/main.c')
-rw-r--r--nuttx/examples/ostest/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/examples/ostest/main.c b/nuttx/examples/ostest/main.c
index ff1072176..06c6ad9f5 100644
--- a/nuttx/examples/ostest/main.c
+++ b/nuttx/examples/ostest/main.c
@@ -120,17 +120,25 @@ static int user_main(int argc, char *argv[])
cond_test();
+#ifndef CONFIG_DISABLE_SIGNALS
/* Verify pthreads and condition variable timed waits */
timedwait_test();
+#endif
+#ifndef CONFIG_DISABLE_MQUEUE
/* Verify pthreads and message queues */
mqueue_test();
+#endif
+#ifndef CONFIG_DISABLE_SIGNALS
/* Verify signal handlers */
sighand_test();
+#endif
+
+ printf("user_main: Exitting\n");
return 0;
}