Mercurial > pub > dyncall > bindings
comparison lua/luadyncall/test/test_luapath.sh @ 0:0cfcc391201f
initial from svn dyncall-1745
author | Daniel Adler |
---|---|
date | Thu, 19 Mar 2015 22:26:28 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0cfcc391201f |
---|---|
1 test_unset() { | |
2 echo "TEST: <unset>" | |
3 lua test_luapath.lua | |
4 echo | |
5 } | |
6 | |
7 test_set() { | |
8 echo "TEST: LUA_PATH=$1" | |
9 LUA_PATH=$1 lua test_luapath.lua | |
10 echo | |
11 } | |
12 | |
13 test_unset | |
14 test_set "" | |
15 test_set ";;" | |
16 test_set "AA;;BB" | |
17 |