diff options
Diffstat (limited to 'tests/testing.c')
-rw-r--r-- | tests/testing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testing.c b/tests/testing.c index 554dd34..14e545d 100644 --- a/tests/testing.c +++ b/tests/testing.c @@ -5,7 +5,7 @@ int main(void) { - int rc = 1; + int rc = EXIT_FAILURE; test_start("testing.c"); const bool should_overwrite = true; @@ -40,7 +40,7 @@ main(void) { test_ok(); } - rc = 0; + rc = EXIT_SUCCESS; out: return rc; } |