From: Guillem Jover Date: Mon, 11 Jan 2016 01:21:15 +0000 (+0100) Subject: test: Fix success return code for arc4random unit test X-Git-Tag: 0.8.2~3 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=e4ab2c62cdc5457ea4b8cabd6c7d391810e17fc1;p=thirdparty%2Flibbsd.git test: Fix success return code for arc4random unit test --- 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;