Commit 8dc1b7bd authored by Derek Buitenhuis's avatar Derek Buitenhuis

base64-test: Remove posibility of returning restricted exit codes

Signed-off-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parent 530cd289
......@@ -156,7 +156,10 @@ int main(void)
for (i = 0; i < FF_ARRAY_ELEMS(tests); i++)
error_count += test_encode_decode(tests[i].data, strlen(tests[i].data), tests[i].encoded_ref);
return error_count;
if (error_count)
printf("Error Count: %d.\n", error_count);
return !!error_count;
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment