summaryrefslogtreecommitdiffstats
path: root/crypto/sha
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-05-28 21:42:40 +0000
committerAndy Polyakov <appro@openssl.org>2004-05-28 21:42:40 +0000
commit674ee8b72defc140447c2c65e3e3e65188da1919 (patch)
tree990fb395cbe46ef9bf0da12c74dc9a640ea3969e /crypto/sha
parent1809e858bbc1c3e24ffebdef173871161a036fa6 (diff)
Make sure we return 0 if test passed.
Diffstat (limited to 'crypto/sha')
-rw-r--r--crypto/sha/sha256t.c2
-rw-r--r--crypto/sha/sha512t.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/crypto/sha/sha256t.c b/crypto/sha/sha256t.c
index 68d95f1ab5..f57cfc54f5 100644
--- a/crypto/sha/sha256t.c
+++ b/crypto/sha/sha256t.c
@@ -125,4 +125,6 @@ int main ()
fprintf(stdout,"."); fflush(stdout);
fprintf(stdout," passed.\n"); fflush(stdout);
+
+ return 0;
}
diff --git a/crypto/sha/sha512t.c b/crypto/sha/sha512t.c
index 603fcefcbe..283b59c5ce 100644
--- a/crypto/sha/sha512t.c
+++ b/crypto/sha/sha512t.c
@@ -163,4 +163,6 @@ int main ()
fprintf(stdout,"."); fflush(stdout);
fprintf(stdout," passed.\n"); fflush(stdout);
+
+ return 0;
}