]> git.meshlink.io Git - meshlink/blobdiff - test/ephemeral.c
Don't use assert() to check the results of pthread_*() calls.
[meshlink] / test / ephemeral.c
index 6921b53904a68a3dd556937cd1a62043ec2ce86f..07db7ebd5322acd768db53e83a752126c14e315a 100644 (file)
@@ -1,28 +1,16 @@
+#ifdef NDEBUG
+#undef NDEBUG
+#endif
+
 #include <stdio.h>
+#include <stdlib.h>
 #include <sys/time.h>
 #include <assert.h>
 
 #include "meshlink.h"
+#include "utils.h"
 
-void log_cb(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) {
-       static struct timeval tv0;
-       struct timeval tv;
-
-       if(tv0.tv_sec == 0) {
-               gettimeofday(&tv0, NULL);
-       }
-
-       gettimeofday(&tv, NULL);
-       fprintf(stderr, "%u.%.03u ", (unsigned int)(tv.tv_sec - tv0.tv_sec), (unsigned int)tv.tv_usec / 1000);
-
-       if(mesh) {
-               fprintf(stderr, "(%s) ", mesh->name);
-       }
-
-       fprintf(stderr, "[%d] %s\n", level, text);
-}
-
-int main() {
+int main(void) {
        meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_cb);
 
        // Open two ephemeral meshlink instance.
@@ -78,6 +66,4 @@ int main() {
 
        meshlink_close(mesh1);
        meshlink_close(mesh2);
-
-       return 0;
 }