X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=test%2Fv3ext.c;h=14ae49969d07bc0442bda18d438897885cda0d2c;hp=9fbdfd2e79f9ad3b7571e49966e88bd170a1c7be;hb=6862de63d469f3148a2ff5a04a6b9ab6413bd5ac;hpb=a9c6d221055c3a85edb23b1364cd60baafed4b9f diff --git a/test/v3ext.c b/test/v3ext.c index 9fbdfd2e79..14ae49969d 100644 --- a/test/v3ext.c +++ b/test/v3ext.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 @@ -37,17 +37,11 @@ end: return ret; } -int test_main(int argc, char *argv[]) +int setup_tests(void) { - int ret; - - if (argc != 2) { - TEST_error("Usage error"); + if (!TEST_ptr(infile = test_get_argument(0))) return 0; - } - infile = argv[1]; ADD_TEST(test_pathlen); - ret = run_tests(argv[0]); - return ret; + return 1; }