summaryrefslogtreecommitdiffstats
path: root/test/constant_time_test.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-04-19 22:26:12 +0200
committerRichard Levitte <levitte@openssl.org>2015-09-07 16:10:57 +0200
commit127d25903fc705756ac211ea373104d8e8858ae1 (patch)
tree27b67c8ac8e0d87c75d81db0b31f330a2cf46e99 /test/constant_time_test.c
parent88b8a5279f452027c193c2de7909dd9f7c9736c6 (diff)
Add recipes for misc other things we want to test
Note that this required a change in constant_time_test.c, as it says "ok", which interferes with what Test::Harness expects to see. I had constant_time_test.c say "success" instead. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/constant_time_test.c')
-rw-r--r--test/constant_time_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/constant_time_test.c b/test/constant_time_test.c
index ed3d7eaac4..1c04cb7b61 100644
--- a/test/constant_time_test.c
+++ b/test/constant_time_test.c
@@ -295,7 +295,7 @@ int main(int argc, char *argv[])
}
if (!num_failed) {
- fprintf(stdout, "ok (ran %d tests)\n", num_all);
+ fprintf(stdout, "success (ran %d tests)\n", num_all);
return EXIT_SUCCESS;
} else {
fprintf(stdout, "%d of %d tests failed!\n", num_failed, num_all);