From 7225a3d4513137a8e13a5db39538e007b8faa886 Mon Sep 17 00:00:00 2001 From: roboo Date: Mon, 22 Aug 2016 20:57:26 +0200 Subject: Change APPVEYOR_OPENSSL to OPENSSL_DIRS for better test readability --- test/test_environment.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/test_environment.lua b/test/test_environment.lua index 37bd38f1..ab6c3edd 100644 --- a/test/test_environment.lua +++ b/test/test_environment.lua @@ -153,6 +153,7 @@ end function test_env.set_args() -- if at least Lua/LuaJIT version argument was found on input start to parse other arguments to env. variables test_env.TYPE_TEST_ENV = "minimal" + test_env.OPENSSL_DIRS = "" test_env.RESET_ENV = true for _, argument in ipairs(arg) do @@ -168,7 +169,7 @@ function test_env.set_args() test_env.TRAVIS = true elseif argument == "appveyor" then test_env.APPVEYOR = true - test_env.APPVEYOR_OPENSSL = "OPENSSL_LIBDIR=C:\\OpenSSL-Win32\\lib OPENSSL_INCDIR=C:\\OpenSSL-Win32\\include" + test_env.OPENSSL_DIRS = "OPENSSL_LIBDIR=C:\\OpenSSL-Win32\\lib OPENSSL_INCDIR=C:\\OpenSSL-Win32\\include" elseif argument:find("^os=") then test_env.TEST_TARGET_OS = argument:match("^os=(.*)$") else -- cgit v1.2.3-55-g6feb