diff options
author | Pauli <paul.dale@oracle.com> | 2017-07-18 03:48:27 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-07-26 23:53:08 +0200 |
commit | ad887416f1e59c3294a7d8f83a0ca77120523b4a (patch) | |
tree | 99971c4acaaa7a43efa38a0d52e230c0e68a1c6c /test/x509_check_cert_pkey_test.c | |
parent | Simplify the handling of shared library version numbers (diff) | |
download | openssl-ad887416f1e59c3294a7d8f83a0ca77120523b4a.tar.xz openssl-ad887416f1e59c3294a7d8f83a0ca77120523b4a.zip |
Update the test framework so that the need for test_main is removed. Everything
that needed test_main now works using the same infrastructure as tests that used
register_tests.
This meant:
* renaming register_tests to setup_tests and giving it a success/failure return.
* renaming the init_test function to setup_test_framework.
* renaming the finish_test function to pulldown_test_framework.
* adding a user provided global_init function that runs before the test frame
work is initialised. It returns a failure indication that stops the stest.
* adding helper functions that permit tests to access their command line args.
* spliting the BIO initialisation and finalisation out from the test setup and
teardown.
* hiding some of the now test internal functions.
* fix the comments in testutil.h
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3953)
Diffstat (limited to 'test/x509_check_cert_pkey_test.c')
-rw-r--r-- | test/x509_check_cert_pkey_test.c | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/test/x509_check_cert_pkey_test.c b/test/x509_check_cert_pkey_test.c index 003bab8636..1cad49e803 100644 --- a/test/x509_check_cert_pkey_test.c +++ b/test/x509_check_cert_pkey_test.c @@ -20,8 +20,12 @@ * t: API type, "cert" for X509_ and "req" for X509_REQ_ APIs. * e: expected, "ok" for success, "failed" for what should fail. */ -static int test_x509_check_cert_pkey(const char *c, const char *k, - const char *t, const char *e) +static const char *c; +static const char *k; +static const char *t; +static const char *e; + +static int test_x509_check_cert_pkey(void) { BIO *bio = NULL; X509 *x509 = NULL; @@ -102,13 +106,17 @@ failed: return ret; } -int test_main(int argc, char **argv) +int setup_tests(void) { - if (!TEST_int_eq(argc, 5)) { - TEST_info("usage: x509_check_cert_pkey cert.pem|cert.req" + if (!TEST_ptr(c = test_get_argument(0)) + || !TEST_ptr(k = test_get_argument(1)) + || !TEST_ptr(t = test_get_argument(2)) + || !TEST_ptr(e = test_get_argument(3))) { + TEST_note("usage: x509_check_cert_pkey cert.pem|cert.req" " key.pem cert|req <expected>"); - return 1; + return 0; } - return !test_x509_check_cert_pkey(argv[1], argv[2], argv[3], argv[4]); + ADD_TEST(test_x509_check_cert_pkey); + return 1; } |