use assert instead of ambiuous return code

This commit is contained in:
2026-07-12 18:09:46 -05:00
parent 96e1a8e0d6
commit baa683d970
3 changed files with 18 additions and 28 deletions

View File

@@ -13,12 +13,10 @@ int main(void) {
printf("REPO: %s\n", L_TYPES_REPO);
printf("VERSION: %s\n", L_TYPES_VERSION);
printf("LICENSE: %s\n\n", L_TYPES_LICENSE);
int RETURN_CODE = 0;
RETURN_CODE += test_l_array();
RETURN_CODE += test_l_string();
test_l_array();
test_l_string();
printf("\nError Total: %d\n", RETURN_CODE);
return RETURN_CODE;
printf("Test Completed Succefully.\n");
return 0;
}