X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=test%2Fx509_internal_test.c;h=03bbcf2bfd25839b972a6b4975830e3af8311627;hp=10cb0b189bea3c2d8618dad085e5e91043e6ffce;hb=5d99881e6a58a8775b8ca866b794f615a16bb033;hpb=a9c6d221055c3a85edb23b1364cd60baafed4b9f diff --git a/test/x509_internal_test.c b/test/x509_internal_test.c index 10cb0b189b..03bbcf2bfd 100644 --- a/test/x509_internal_test.c +++ b/test/x509_internal_test.c @@ -1,5 +1,5 @@ /* - * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -15,7 +15,7 @@ #include #include #include "testutil.h" -#include "e_os.h" +#include "internal/nelem.h" /********************************************************************** * @@ -35,7 +35,7 @@ # pragma names restore #endif -static int test_standard_exts() +static int test_standard_exts(void) { size_t i; int prev = -1, good = 1; @@ -52,16 +52,13 @@ static int test_standard_exts() tmp = standard_exts; TEST_error("Extensions out of order!"); for (i = 0; i < STANDARD_EXTENSION_COUNT; i++, tmp++) - fprintf(stderr, "%d : %s\n", (*tmp)->ext_nid, - OBJ_nid2sn((*tmp)->ext_nid)); - } else { - fprintf(stderr, "Order OK\n"); + TEST_note("%d : %s", (*tmp)->ext_nid, OBJ_nid2sn((*tmp)->ext_nid)); } - return good; } -void register_tests() +int setup_tests() { ADD_TEST(test_standard_exts); + return 1; }