aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-01-13 00:59:35 -0200
committerHisham Muhammad <hisham@gobolinux.org>2015-01-13 00:59:35 -0200
commit0f1c93774669468c5165be2711325224388aed41 (patch)
tree3c090c7be9fab51c77aa211bb2c44383f3bc755c
parent8d6845e332ebf71729fa7aa76c70856af5b321bc (diff)
downloadluarocks-0f1c93774669468c5165be2711325224388aed41.tar.gz
luarocks-0f1c93774669468c5165be2711325224388aed41.tar.bz2
luarocks-0f1c93774669468c5165be2711325224388aed41.zip
Updates for Lua 5.3 compatibility
-rwxr-xr-xtest/testing.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/testing.sh b/test/testing.sh
index 0133d581..1af7bc6a 100755
--- a/test/testing.sh
+++ b/test/testing.sh
@@ -239,9 +239,9 @@ mkdir -p "$testing_server"
239 get "$luarocks_repo/wsapi-1.6-1.src.rock" 239 get "$luarocks_repo/wsapi-1.6-1.src.rock"
240 get "$luarocks_repo/lxsh-${verrev_lxsh}.src.rock" 240 get "$luarocks_repo/lxsh-${verrev_lxsh}.src.rock"
241 get "$luarocks_repo/abelhas-1.0-1.rockspec" 241 get "$luarocks_repo/abelhas-1.0-1.rockspec"
242 get "$luarocks_repo/lzlib-0.4.work3-1.src.rock" 242 get "$luarocks_repo/lzlib-0.4.1.53-1.src.rock"
243 get "$luarocks_repo/lpeg-0.12-1.src.rock" 243 get "$luarocks_repo/lpeg-0.12-1.src.rock"
244 get "$luarocks_repo/luaposix-31-1.src.rock" 244 get "$luarocks_repo/luaposix-33.2.1-1.src.rock"
245 get "$luarocks_repo/md5-1.2-1.src.rock" 245 get "$luarocks_repo/md5-1.2-1.src.rock"
246 get "$luarocks_repo/lmathx-20120430.51-1.src.rock" 246 get "$luarocks_repo/lmathx-20120430.51-1.src.rock"
247 get "$luarocks_repo/lmathx-20120430.52-1.src.rock" 247 get "$luarocks_repo/lmathx-20120430.52-1.src.rock"
@@ -496,7 +496,11 @@ run_with_full_environment() {
496 echo "===========================================" 496 echo "==========================================="
497 echo "Running with full environment" 497 echo "Running with full environment"
498 echo "===========================================" 498 echo "==========================================="
499 build_environment luacov luafilesystem luasocket luabitop luaposix md5 lzlib 499
500 local bitop=
501 [ "$luaversion" = "5.1.5" ] && bitop=luabitop
502
503 build_environment luacov luafilesystem luasocket $bitop luaposix md5 lzlib
500 run_tests $1 504 run_tests $1
501} 505}
502 506