]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
use printf instead of print_message for '1..0 # Skipped: sigs test requires crypto'
authorMark Andrews <marka@isc.org>
Mon, 8 Jul 2019 00:36:34 +0000 (10:36 +1000)
committerMark Andrews <marka@isc.org>
Mon, 8 Jul 2019 00:57:22 +0000 (10:57 +1000)
lib/dns/tests/sigs_test.c

index 3eeda78d38667b1bd3b73f179943f5617e6da1fa..9ccec9cad6c0cbbabb441abb35e6fdf1aab71369 100644 (file)
 
 #if HAVE_CMOCKA
 
+#include <setjmp.h>
 #include <stdarg.h>
 #include <stddef.h>
-#include <setjmp.h>
+#include <stdio.h>
 
 #if defined(OPENSSL) || defined(PKCS11CRYPTO)
 #include <string.h>
@@ -456,7 +457,7 @@ main(void) {
 
        return (cmocka_run_group_tests(tests, dns_test_init, dns_test_final));
 #else
-       print_message("1..0 # Skipped: sigs test requires crypto\n");
+       printf("1..0 # Skipped: sigs test requires crypto\n");
 #endif
 }