summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/crypto/rand/randtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/crypto/rand/randtest.c')
-rw-r--r--crypto/openssl/crypto/rand/randtest.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/crypto/openssl/crypto/rand/randtest.c b/crypto/openssl/crypto/rand/randtest.c
index da96e3f..701932e 100644
--- a/crypto/openssl/crypto/rand/randtest.c
+++ b/crypto/openssl/crypto/rand/randtest.c
@@ -60,6 +60,8 @@
#include <stdlib.h>
#include <openssl/rand.h>
+#include "../e_os.h"
+
/* some FIPS 140-1 random number test */
/* some simple tests */
@@ -73,7 +75,13 @@ int main()
/*double d; */
long d;
- RAND_pseudo_bytes(buf,2500);
+ i = RAND_pseudo_bytes(buf,2500);
+ if (i < 0)
+ {
+ printf ("init failed, the rand method is not properly installed\n");
+ err++;
+ goto err;
+ }
n1=0;
for (i=0; i<16; i++) n2[i]=0;
@@ -201,7 +209,8 @@ int main()
err++;
}
printf("test 4 done\n");
+ err:
err=((err)?1:0);
- exit(err);
+ EXIT(err);
return(err);
}
OpenPOWER on IntegriCloud