Skip to content

Commit

Permalink
Replaced VERBOSE with DEBUG_LEVEL in test suites
Browse files Browse the repository at this point in the history
  • Loading branch information
olszomal committed Dec 18, 2024
1 parent f559b67 commit 121827a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/check-privkey.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ int main(int argc, char *argv[])
goto end;
}

if (!ENGINE_ctrl_cmd_string(engine, "VERBOSE", NULL, 0)) {
if (!ENGINE_ctrl_cmd_string(engine, "DEBUG_LEVEL", "7", 0)) {
display_openssl_errors(__LINE__);
exit(1);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/dup-key.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ int main(int argc, char *argv[])
goto end;
}

if (!ENGINE_ctrl_cmd_string(engine, "VERBOSE", NULL, 0)) {
if (!ENGINE_ctrl_cmd_string(engine, "DEBUG_LEVEL", "7", 0)) {
display_openssl_errors(__LINE__);
exit(1);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/evp-sign.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ int main(int argc, char **argv)
exit(1);
}

if (!ENGINE_ctrl_cmd_string(e, "VERBOSE", NULL, 0)) {
if (!ENGINE_ctrl_cmd_string(e, "DEBUG_LEVEL", "7", 0)) {
display_openssl_errors(__LINE__);
exit(1);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/rsa-oaep.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ int main(int argc, char **argv)
exit(1);
}

if (!ENGINE_ctrl_cmd_string(e, "VERBOSE", NULL, 0)) {
if (!ENGINE_ctrl_cmd_string(e, "DEBUG_LEVEL", "7", 0)) {
display_openssl_errors(__LINE__);
exit(1);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/rsa-pss-sign.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ int main(int argc, char **argv)
exit(1);
}

if (!ENGINE_ctrl_cmd_string(e, "VERBOSE", NULL, 0)) {
if (!ENGINE_ctrl_cmd_string(e, "DEBUG_LEVEL", "7", 0)) {
display_openssl_errors(__LINE__);
exit(1);
}
Expand Down
Binary file added tests/store-cert
Binary file not shown.

0 comments on commit 121827a

Please sign in to comment.