aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/test.sh
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-21 20:59:39 +1000
committerDavid Walter Seikel2014-04-21 20:59:39 +1000
commit9621add2918cc4943e6693b74ae85d51dd264fcf (patch)
treefff1edf2c69d7a08a0e12885eecc9b96ed847a6a /LuaSL/test.sh
parentLuaSL_test's window doesn't need to be so huge. (diff)
downloadSledjHamr-9621add2918cc4943e6693b74ae85d51dd264fcf.zip
SledjHamr-9621add2918cc4943e6693b74ae85d51dd264fcf.tar.gz
SledjHamr-9621add2918cc4943e6693b74ae85d51dd264fcf.tar.bz2
SledjHamr-9621add2918cc4943e6693b74ae85d51dd264fcf.tar.xz
We don't need the testlua directory any more.
Diffstat (limited to 'LuaSL/test.sh')
-rwxr-xr-xLuaSL/test.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/LuaSL/test.sh b/LuaSL/test.sh
index e908a80..d1a7d4c 100755
--- a/LuaSL/test.sh
+++ b/LuaSL/test.sh
@@ -4,25 +4,24 @@ wd=$(pwd)
4 4
5# Kill any left overs. 5# Kill any left overs.
6killall -KILL LuaSL 6killall -KILL LuaSL
7cd $wd/testLua
8export LUA_PATH="$wd/src/?.lua" 7export LUA_PATH="$wd/src/?.lua"
9 8
10case $@ in 9case $@ in
11 10
12 ddd) 11 ddd)
13 ddd ../LuaSL 12 ddd ./LuaSL
14 ;; 13 ;;
15 14
16 gdb) 15 gdb)
17 gdb ../LuaSL 16 gdb ./LuaSL
18 ;; 17 ;;
19 18
20 *) 19 *)
21 echo "_______________ STARTING LuaSL _______________" 20 echo "_______________ STARTING LuaSL _______________"
22 ../LuaSL & 21 ./LuaSL &
23 sleep 1 22 sleep 1
24 echo "_______________ STARTING LuaSL_test _______________" 23 echo "_______________ STARTING LuaSL_test _______________"
25 ../LuaSL_test 24 ./LuaSL_test
26 ;; 25 ;;
27 26
28esac 27esac