Explorar el Código

Unit test: print something from the unit test, so test frameworks do not consider the test as hanging

bel hace 10 años
padre
commit
376ea12aeb
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      test/public_server.c

+ 3 - 0
test/public_server.c

@@ -74,11 +74,14 @@ static int wait_not_null(void *volatile *data)
 {
 	int i;
 	for (i = 0; i < 100; i++) {
+        printf("Waiting for response ... %i\n", i);
 		test_sleep(1);
 		if (*data != NULL) {
+            printf("Waiting for response ... %i (done)\n", i);
 			return 1;
 		}
 	}
+    printf("Waiting for response ... %i (failed)\n", i);
 	return 0;
 }