report if all tests passed

This commit is contained in:
Radim Kolar 2024-07-08 09:32:46 +02:00
parent 439a9b677f
commit 650da936ae

View File

@ -110,6 +110,11 @@ static int runtestcase(void)
}
free(test);
}
if (rc == 0) {
printf("ALL TESTS PASSED.\n");
} else {
printf("SOME TESTS FAILED.\n");
}
return rc;
}