From: Richard Levitte Date: Sat, 12 Mar 2016 01:06:55 +0000 (+0100) Subject: When creating directory specs, use srctop_dir rather than srctop_file. X-Git-Tag: OpenSSL_1_1_0-pre4~46 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0a705cef0c920a10e1373478dac1a56c6de1fdd4;p=oweals%2Fopenssl.git When creating directory specs, use srctop_dir rather than srctop_file. While insignificant on Unix like systems, this is significant on systems like VMS. Reviewed-by: Rich Salz Reviewed-by: Tim Hudson --- diff --git a/test/recipes/80-test_ct.t b/test/recipes/80-test_ct.t index ff63fa4198..9685b95616 100644 --- a/test/recipes/80-test_ct.t +++ b/test/recipes/80-test_ct.t @@ -1,10 +1,10 @@ #! /usr/bin/perl -use OpenSSL::Test qw/:DEFAULT srctop_file/; +use OpenSSL::Test qw/:DEFAULT srctop_file srctop_dir/; use OpenSSL::Test::Simple; setup("test_ct"); $ENV{CTLOG_FILE} = srctop_file("test", "ct", "log_list.conf"); -$ENV{CT_DIR} = srctop_file("test", "ct"); -$ENV{CERTS_DIR} = srctop_file("test", "certs"); +$ENV{CT_DIR} = srctop_dir("test", "ct"); +$ENV{CERTS_DIR} = srctop_dir("test", "certs"); simple_test("test_ct", "ct_test", "ct", "ec");