summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl
diff options
context:
space:
mode:
authortb <>2022-12-01 13:49:12 +0000
committertb <>2022-12-01 13:49:12 +0000
commit803c6b57eb76edf94129005437c9b198e39a7794 (patch)
tree2cb45cb780bc8387ff69684fdf79b9d9c81f26ae /src/regress/lib/libssl
parent999637f285854326cc5508d4fae2282c7b93bbe4 (diff)
downloadopenbsd-803c6b57eb76edf94129005437c9b198e39a7794.tar.gz
openbsd-803c6b57eb76edf94129005437c9b198e39a7794.tar.bz2
openbsd-803c6b57eb76edf94129005437c9b198e39a7794.zip
Refrain from printing SUCCESS in some of my tests
Silence is good. On failure, the regress framework will make it clear.
Diffstat (limited to 'src/regress/lib/libssl')
-rw-r--r--src/regress/lib/libssl/handshake/handshake_table.c5
-rw-r--r--src/regress/lib/libssl/handshake/valid_handshakes_terminate.c5
2 files changed, 2 insertions, 8 deletions
diff --git a/src/regress/lib/libssl/handshake/handshake_table.c b/src/regress/lib/libssl/handshake/handshake_table.c
index b316734524..8ebed9a73e 100644
--- a/src/regress/lib/libssl/handshake/handshake_table.c
+++ b/src/regress/lib/libssl/handshake/handshake_table.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: handshake_table.c,v 1.17 2022/03/08 16:59:25 tb Exp $ */ 1/* $OpenBSD: handshake_table.c,v 1.18 2022/12/01 13:49:12 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2019 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2019 Theo Buehler <tb@openbsd.org>
4 * 4 *
@@ -546,8 +546,5 @@ main(int argc, char *argv[])
546 if (!verify_table(hs_table, print)) 546 if (!verify_table(hs_table, print))
547 return 1; 547 return 1;
548 548
549 if (!print)
550 printf("SUCCESS\n");
551
552 return 0; 549 return 0;
553} 550}
diff --git a/src/regress/lib/libssl/handshake/valid_handshakes_terminate.c b/src/regress/lib/libssl/handshake/valid_handshakes_terminate.c
index 5f0e4f2c18..286b860a7d 100644
--- a/src/regress/lib/libssl/handshake/valid_handshakes_terminate.c
+++ b/src/regress/lib/libssl/handshake/valid_handshakes_terminate.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: valid_handshakes_terminate.c,v 1.3 2019/04/05 20:25:42 tb Exp $ */ 1/* $OpenBSD: valid_handshakes_terminate.c,v 1.4 2022/12/01 13:49:12 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2019 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2019 Theo Buehler <tb@openbsd.org>
4 * 4 *
@@ -50,8 +50,5 @@ main(int argc, char *argv[])
50 } 50 }
51 } 51 }
52 52
53 if (!fail)
54 printf("SUCCESS\n");
55
56 return fail; 53 return fail;
57} 54}