summaryrefslogtreecommitdiffstats
path: root/test/evp_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/evp_test.c')
-rw-r--r--test/evp_test.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/evp_test.c b/test/evp_test.c
index 685db4eebb..d042a4e8ae 100644
--- a/test/evp_test.c
+++ b/test/evp_test.c
@@ -564,8 +564,11 @@ static int parse_test_line(EVP_TEST *t, char *buf)
}
if (t->skip)
return 1;
- if (strcmp(keyword, "Result") == 0) {
- if (t->expected_err) {
+ if (strcmp(keyword, "Title") == 0) {
+ TEST_info("Starting %s tests", value);
+ set_test_title(value);
+ } else if (strcmp(keyword, "Result") == 0) {
+ if (t->expected_err != NULL) {
TEST_info("Line %d: multiple result lines", t->line);
return 0;
}