From e4ab2c62cdc5457ea4b8cabd6c7d391810e17fc1 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Mon, 11 Jan 2016 02:21:15 +0100 Subject: [PATCH] test: Fix success return code for arc4random unit test --- test/arc4random.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/arc4random.c b/test/arc4random.c index ec52af1..e5a61f7 100644 --- a/test/arc4random.c +++ b/test/arc4random.c @@ -99,6 +99,8 @@ main(int argc, char **argv) /* XXX: We should probably FAIL the test, but we currently * have one test always failing. */ rc = TEST_SKIP; + } else { + rc = TEST_OK; } return rc;