summaryrefslogtreecommitdiff
path: root/tests/test-random.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-random.c')
-rw-r--r--tests/test-random.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test-random.c b/tests/test-random.c
index 4bfc1b84..499cb7e0 100644
--- a/tests/test-random.c
+++ b/tests/test-random.c
@@ -45,5 +45,7 @@ main ()
}
/* Fail if none of the numbers were larger than RAND_MAX / 2. */
- return !n_big;
+ if (!n_big)
+ return 1;
+ return test_exit_status;
}