diff options
Diffstat (limited to 'tests/math.c')
-rw-r--r-- | tests/math.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/math.c b/tests/math.c index d2b64c6..2aefa59 100644 --- a/tests/math.c +++ b/tests/math.c @@ -125,7 +125,11 @@ test_mul_size(void) { int main(void) { + int rc = EXIT_FAILURE; + test_add_size(); test_mul_size(); - return EXIT_SUCCESS; + + rc = EXIT_SUCCESS; + return rc; } |