aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test.sh
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-11 20:44:17 +1000
committerDavid Walter Seikel2012-02-11 20:44:17 +1000
commit8b8e8031fa7755ba2771f9c6cd04c76de96fdb25 (patch)
treed87ceee360e76d2b947268494a5a1c7bc30b147c /test.sh
parentMore message sending design work. (diff)
downloadSledjHamr-8b8e8031fa7755ba2771f9c6cd04c76de96fdb25.zip
SledjHamr-8b8e8031fa7755ba2771f9c6cd04c76de96fdb25.tar.gz
SledjHamr-8b8e8031fa7755ba2771f9c6cd04c76de96fdb25.tar.bz2
SledjHamr-8b8e8031fa7755ba2771f9c6cd04c76de96fdb25.tar.xz
LuaSL_test harness - connects to the LuaSL server, sends script commands. It has the test GUI now. Turned LuaSL into purely a server.
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/test.sh b/test.sh
index 52a9561..b9455c0 100755
--- a/test.sh
+++ b/test.sh
@@ -7,11 +7,13 @@ wd=$(pwd)
7./build.sh || exit 7./build.sh || exit
8 8
9echo "_______________ TESTING LuaSL _______________" 9echo "_______________ TESTING LuaSL _______________"
10# Kill any left overs.
11killall -KILL LuaSL
10cd $wd/LuaSL/testLua 12cd $wd/LuaSL/testLua
11export LUA_PATH="$wd/LuaSL/src/?.lua" 13export LUA_PATH="$wd/LuaSL/src/?.lua"
12export LUA_SOPATH='../../libraries/luaproc/' 14export LUA_SOPATH='../../libraries/luaproc/'
13export LD_LIBRARY_PATH="../../libraries/luajit-2.0/src:$LD_LIBRARY_PATH" 15export LD_LIBRARY_PATH="../../libraries/luajit-2.0/src:$LD_LIBRARY_PATH"
14 16export EINA_LOG_LEVELS="ecore:2,ecore_con:2"
15 17
16case $@ in 18case $@ in
17 19
@@ -24,7 +26,9 @@ case $@ in
24 ;; 26 ;;
25 27
26 *) 28 *)
27 ../LuaSL 29 ../LuaSL &
30 sleep 1
31 ../LuaSL_test
28 ;; 32 ;;
29 33
30esac 34esac