aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test.sh
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-30 13:17:18 +1000
committerDavid Walter Seikel2012-01-30 13:17:18 +1000
commit0c0a43ad00d32c99c8da43a2f7524a2a37c9803d (patch)
tree88a45f15c02555563e2992b238d3b16baed32966 /test.sh
parentThese are nominally blocks, but might just be single statements. (diff)
downloadSledjHamr-0c0a43ad00d32c99c8da43a2f7524a2a37c9803d.zip
SledjHamr-0c0a43ad00d32c99c8da43a2f7524a2a37c9803d.tar.gz
SledjHamr-0c0a43ad00d32c99c8da43a2f7524a2a37c9803d.tar.bz2
SledjHamr-0c0a43ad00d32c99c8da43a2f7524a2a37c9803d.tar.xz
Make it easier to inkoke a debugger.
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh18
1 files changed, 17 insertions, 1 deletions
diff --git a/test.sh b/test.sh
index 9c6f58a..e32d6a8 100755
--- a/test.sh
+++ b/test.sh
@@ -10,5 +10,21 @@ echo "_______________ TESTING LuaSL _______________"
10cd $wd/LuaSL/testLua 10cd $wd/LuaSL/testLua
11export LUA_SOPATH='../../libraries/luaproc/' 11export LUA_SOPATH='../../libraries/luaproc/'
12export LD_LIBRARY_PATH="../../libraries/luajit-2.0/src:$LD_LIBRARY_PATH" 12export LD_LIBRARY_PATH="../../libraries/luajit-2.0/src:$LD_LIBRARY_PATH"
13../LuaSL 13
14
15case $@ in
16
17 ddd)
18 ddd ../LuaSL
19 ;;
20
21 gdb)
22 gdb ../LuaSL
23 ;;
24
25 *)
26 ../LuaSL
27 ;;
28
29esac
14 30