diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2016-08-22 17:26:31 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-22 17:26:31 -0300 |
commit | aea914fd62e73e3106b57f36427ad36123a515a0 (patch) | |
tree | 991ad55f79c0fd267eee12b3b2b8c366f2705e68 /test | |
parent | 043c656a11140df8411f0635dc9b79700040d37d (diff) | |
parent | 6d9c9997645c07ed93719d85e260d9ffbc2d1d25 (diff) | |
download | luarocks-aea914fd62e73e3106b57f36427ad36123a515a0.tar.gz luarocks-aea914fd62e73e3106b57f36427ad36123a515a0.tar.bz2 luarocks-aea914fd62e73e3106b57f36427ad36123a515a0.zip |
Merge pull request #607 from robooo/new-tests
Improvement of checking openssl libs on appveyor
Diffstat (limited to 'test')
-rw-r--r-- | test/test_environment.lua | 3 |
1 files changed, 2 insertions, 1 deletions
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 | |||
153 | function test_env.set_args() | 153 | function test_env.set_args() |
154 | -- if at least Lua/LuaJIT version argument was found on input start to parse other arguments to env. variables | 154 | -- if at least Lua/LuaJIT version argument was found on input start to parse other arguments to env. variables |
155 | test_env.TYPE_TEST_ENV = "minimal" | 155 | test_env.TYPE_TEST_ENV = "minimal" |
156 | test_env.OPENSSL_DIRS = "" | ||
156 | test_env.RESET_ENV = true | 157 | test_env.RESET_ENV = true |
157 | 158 | ||
158 | for _, argument in ipairs(arg) do | 159 | for _, argument in ipairs(arg) do |
@@ -168,7 +169,7 @@ function test_env.set_args() | |||
168 | test_env.TRAVIS = true | 169 | test_env.TRAVIS = true |
169 | elseif argument == "appveyor" then | 170 | elseif argument == "appveyor" then |
170 | test_env.APPVEYOR = true | 171 | test_env.APPVEYOR = true |
171 | test_env.APPVEYOR_OPENSSL = "OPENSSL_LIBDIR=C:\\OpenSSL-Win32\\lib OPENSSL_INCDIR=C:\\OpenSSL-Win32\\include" | 172 | test_env.OPENSSL_DIRS = "OPENSSL_LIBDIR=C:\\OpenSSL-Win32\\lib OPENSSL_INCDIR=C:\\OpenSSL-Win32\\include" |
172 | elseif argument:find("^os=") then | 173 | elseif argument:find("^os=") then |
173 | test_env.TEST_TARGET_OS = argument:match("^os=(.*)$") | 174 | test_env.TEST_TARGET_OS = argument:match("^os=(.*)$") |
174 | else | 175 | else |