X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=test%2Fuitest.c;h=289f32b6b05f50fc838e703d35a77df2bc497683;hp=68b4b8cbd99f7f8c357f9222c368a82e780ddf64;hb=0109e030db9207a47e195b4c3a3b13e9017f0ed2;hpb=6a74806ed741db24df3a7155e4bc11fb4ba9bc2a diff --git a/test/uitest.c b/test/uitest.c index 68b4b8cbd9..289f32b6b0 100644 --- a/test/uitest.c +++ b/test/uitest.c @@ -1,7 +1,7 @@ /* - * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved. * - * Licensed under the OpenSSL license (the "License"). You may not use + * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html @@ -11,27 +11,24 @@ #include #include #include -#include "apps.h" +#include "apps_ui.h" #include "testutil.h" -/* apps/apps.c depend on these */ -char *default_config_file = NULL; -#ifndef OPENSSL_NO_UI -# include +#include /* Old style PEM password callback */ static int test_pem_password_cb(char *buf, int size, int rwflag, void *userdata) { OPENSSL_strlcpy(buf, (char *)userdata, (size_t)size); - return 1; + return strlen(buf); } /* * Test wrapping old style PEM password callback in a UI method through the * use of UI utility functions */ -static int test_old() +static int test_old(void) { UI_METHOD *ui_method = NULL; UI *ui = NULL; @@ -72,7 +69,7 @@ static int test_old() } /* Test of UI. This uses the UI method defined in apps/apps.c */ -static int test_new_ui() +static int test_new_ui(void) { PW_CB_DATA cb_data = { "password", @@ -89,12 +86,9 @@ static int test_new_ui() return ok; } -#endif - -void register_tests(void) +int setup_tests(void) { -#ifndef OPENSSL_NO_UI ADD_TEST(test_old); ADD_TEST(test_new_ui); -#endif + return 1; }