optional debugging
authordjm <djm@openbsd.org>
Mon, 25 Mar 2024 19:28:09 +0000 (19:28 +0000)
committerdjm <djm@openbsd.org>
Mon, 25 Mar 2024 19:28:09 +0000 (19:28 +0000)
regress/usr.bin/ssh/unittests/kex/test_kex.c

index 3cb30a7..5b7de7b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: test_kex.c,v 1.7 2024/01/11 01:45:58 djm Exp $ */
+/*     $OpenBSD: test_kex.c,v 1.8 2024/03/25 19:28:09 djm Exp $ */
 /*
  * Regress test KEX
  *
@@ -18,6 +18,7 @@
 #include "sshbuf.h"
 #include "packet.h"
 #include "myproposal.h"
+#include "log.h"
 
 void kex_tests(void);
 static int do_debug = 0;
@@ -180,6 +181,9 @@ do_kex(char *kex)
 void
 kex_tests(void)
 {
+#if 0
+        log_init("test_kex", SYSLOG_LEVEL_DEBUG3, SYSLOG_FACILITY_AUTH, 1);
+#endif
        do_kex("curve25519-sha256@libssh.org");
        do_kex("ecdh-sha2-nistp256");
        do_kex("ecdh-sha2-nistp384");