aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rwxr-xr-xtest/testing.sh44
2 files changed, 28 insertions, 18 deletions
diff --git a/.travis.yml b/.travis.yml
index dced928c..76fdf6d1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,3 @@
1language: c 1language: c
2compiler: gcc 2compiler: gcc
3script: cd test && ./testing.sh --travis 3script: cd test && ./testing.sh --travis --lua 5.2.3 && ./testing.sh --travis --lua 5.1.5
diff --git a/test/testing.sh b/test/testing.sh
index 409620c0..e3aee55f 100755
--- a/test/testing.sh
+++ b/test/testing.sh
@@ -21,14 +21,31 @@ then
21 shift 21 shift
22fi 22fi
23 23
24luaversion=5.1.5
25
26if [ "$1" == "--lua" ]
27then
28 shift
29 luaversion=$1
30 shift
31fi
32
24testing_dir="$PWD" 33testing_dir="$PWD"
25 34
26testing_tree="$testing_dir/testing" 35testing_tree="$testing_dir/testing-$luaversion"
27testing_sys_tree="$testing_dir/testing_sys" 36testing_sys_tree="$testing_dir/testing_sys-$luaversion"
28testing_tree_copy="$testing_dir/testing_copy" 37testing_tree_copy="$testing_dir/testing_copy-$luaversion"
29testing_sys_tree_copy="$testing_dir/testing_sys_copy" 38testing_sys_tree_copy="$testing_dir/testing_sys_copy-$luaversion"
30testing_cache="$testing_dir/testing_cache" 39testing_cache="$testing_dir/testing_cache-$luaversion"
31testing_server="$testing_dir/testing_server" 40testing_server="$testing_dir/testing_server-$luaversion"
41
42
43if [ "$1" == "--clean" ]
44then
45 shift
46 rm -rf "$testing_cache"
47 rm -rf "$testing_server"
48fi
32 49
33[ "$1" ] || rm -f luacov.stats.out 50[ "$1" ] || rm -f luacov.stats.out
34rm -f luacov.report.out 51rm -f luacov.report.out
@@ -43,12 +60,6 @@ rm -rf "$testing_dir/testing_config_show_downloads.lua"
43rm -rf "$testing_dir/testing_config_sftp.lua" 60rm -rf "$testing_dir/testing_config_sftp.lua"
44rm -rf "$testing_dir/luacov.config" 61rm -rf "$testing_dir/luacov.config"
45 62
46if [ "$1" == "--clean" ]
47then
48 rm -rf "$testing_cache"
49 rm -rf "$testing_server"
50fi
51
52mkdir -p "$testing_cache" 63mkdir -p "$testing_cache"
53 64
54[ "$1" = "clean" ] && { 65[ "$1" = "clean" ] && {
@@ -126,11 +137,11 @@ export LUAROCKS_CONFIG="$testing_dir/testing_config.lua"
126export LUA_PATH= 137export LUA_PATH=
127export LUA_CPATH= 138export LUA_CPATH=
128 139
129luaversion=5.2.3
130if [ "$travis" ] 140if [ "$travis" ]
131then 141then
142 luadir=/tmp/lua-$luaversion
132 pushd /tmp 143 pushd /tmp
133 if [ ! -e "lua/bin/lua" ] 144 if [ ! -e "$luadir/bin/lua" ]
134 then 145 then
135 mkdir -p lua 146 mkdir -p lua
136 echo "Downloading lua $luaversion..." 147 echo "Downloading lua $luaversion..."
@@ -138,11 +149,10 @@ then
138 tar zxpf "lua-$luaversion.tar.gz" 149 tar zxpf "lua-$luaversion.tar.gz"
139 cd "lua-$luaversion" 150 cd "lua-$luaversion"
140 echo "Building lua $luaversion..." 151 echo "Building lua $luaversion..."
141 make linux INSTALL_TOP=/tmp/lua &> /dev/null 152 make linux INSTALL_TOP="$luadir" &> /dev/null
142 make install INSTALL_TOP=/tmp/lua &> /dev/null 153 make install INSTALL_TOP="$luadir" &> /dev/null
143 fi 154 fi
144 popd 155 popd
145 luadir=/tmp/lua
146else 156else
147 luadir="/Programs/Lua/Current" 157 luadir="/Programs/Lua/Current"
148fi 158fi