diff options
author | Peter Melnichenko <mpeterval@gmail.com> | 2017-09-11 13:57:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-11 13:57:36 +0300 |
commit | ea62f7c3d00656664824d9519507b5068406b5d0 (patch) | |
tree | 9f07370dee4bc435fb6eac5c42780547317a7ba0 /test | |
parent | 54bb40a807772a5f93d6a0d262f5a22174d44883 (diff) | |
parent | 85701e003241798e36b81ed1e3ed285f7bf5c7a0 (diff) | |
download | luarocks-ea62f7c3d00656664824d9519507b5068406b5d0.tar.gz luarocks-ea62f7c3d00656664824d9519507b5068406b5d0.tar.bz2 luarocks-ea62f7c3d00656664824d9519507b5068406b5d0.zip |
Merge pull request #728 from mpeterv/test-fixes
Fix spec failure under LuaJIT 2.1.0-beta3 + other test fixes
Diffstat (limited to 'test')
-rw-r--r-- | test/test_environment.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/test_environment.lua b/test/test_environment.lua index 6f6f1cfe..bc1e5277 100644 --- a/test/test_environment.lua +++ b/test/test_environment.lua | |||
@@ -285,7 +285,7 @@ end | |||
285 | -- @param save_path string: path to directory, where to download rocks/rockspecs | 285 | -- @param save_path string: path to directory, where to download rocks/rockspecs |
286 | -- @return make_manifest boolean: true if new rocks downloaded | 286 | -- @return make_manifest boolean: true if new rocks downloaded |
287 | local function download_rocks(urls, save_path) | 287 | local function download_rocks(urls, save_path) |
288 | local luarocks_repo = "https://www.luarocks.org" | 288 | local luarocks_repo = "https://luarocks.org" |
289 | local make_manifest = false | 289 | local make_manifest = false |
290 | 290 | ||
291 | for _, url in ipairs(urls) do | 291 | for _, url in ipairs(urls) do |
@@ -533,7 +533,9 @@ function test_env.setup_specs(extra_rocks) | |||
533 | end | 533 | end |
534 | end | 534 | end |
535 | 535 | ||
536 | --- Test if required rock is installed if not, install it | 536 | --- Test if required rock is installed and if not, install it. |
537 | -- Return `true` if the rock is already installed or has been installed successfully, | ||
538 | -- `false` if installation failed. | ||
537 | function test_env.need_rock(rock) | 539 | function test_env.need_rock(rock) |
538 | print("Check if " .. rock .. " is installed") | 540 | print("Check if " .. rock .. " is installed") |
539 | if test_env.run.luarocks_noprint_nocov(test_env.quiet("show " .. rock)) then | 541 | if test_env.run.luarocks_noprint_nocov(test_env.quiet("show " .. rock)) then |