aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2016-07-21 15:50:11 -0300
committerGitHub <noreply@github.com>2016-07-21 15:50:11 -0300
commitbbefca871ab5d872c457fe4bc0a2a5279a8179c4 (patch)
treee6b2ded6be46116b10ffed06f937df7ad84771a3
parentb4536ebabffae8b5b8c3f1cd2eb1063225254100 (diff)
parent60ed802ff0dfad832ce1a1502714e31e5df2ddb0 (diff)
downloadluarocks-bbefca871ab5d872c457fe4bc0a2a5279a8179c4.tar.gz
luarocks-bbefca871ab5d872c457fe4bc0a2a5279a8179c4.tar.bz2
luarocks-bbefca871ab5d872c457fe4bc0a2a5279a8179c4.zip
Merge pull request #594 from robooo/new-tests
Fixed bug in installing testing LuaRocks
-rw-r--r--test/test_environment.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_environment.lua b/test/test_environment.lua
index 5d1e8198..13e548f9 100644
--- a/test/test_environment.lua
+++ b/test/test_environment.lua
@@ -549,10 +549,10 @@ local function install_luarocks(install_env_vars)
549 -- Configure LuaRocks testing environment 549 -- Configure LuaRocks testing environment
550 title("Installing LuaRocks") 550 title("Installing LuaRocks")
551 local configure_cmd = "./configure --with-lua=" .. test_env.testing_paths.luadir .. " --prefix=" .. test_env.testing_paths.testing_lrprefix 551 local configure_cmd = "./configure --with-lua=" .. test_env.testing_paths.luadir .. " --prefix=" .. test_env.testing_paths.testing_lrprefix
552 assert(execute_bool(test_env.quiet(configure_cmd)), false, install_env_vars) 552 assert(execute_bool(test_env.quiet(configure_cmd), false, install_env_vars))
553 assert(execute_bool(test_env.quiet("make clean")), false, install_env_vars) 553 assert(execute_bool(test_env.quiet("make clean"), false, install_env_vars))
554 assert(execute_bool(test_env.quiet("make src/luarocks/site_config.lua")), false, install_env_vars) 554 assert(execute_bool(test_env.quiet("make src/luarocks/site_config.lua"), false, install_env_vars))
555 assert(execute_bool(test_env.quiet("make dev")), false, install_env_vars) 555 assert(execute_bool(test_env.quiet("make dev"), false, install_env_vars))
556 print("LuaRocks installed correctly!") 556 print("LuaRocks installed correctly!")
557end 557end
558 558