mirror of
https://github.com/lammertb/libhttp.git
synced 2025-12-22 04:02:04 +03:00
Unit test: print something from the unit test, so test frameworks do not consider the test as hanging
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user