diff options
author | Philipp Janda <siffiejoe@gmx.net> | 2015-04-11 17:09:37 +0200 |
---|---|---|
committer | Philipp Janda <siffiejoe@gmx.net> | 2015-04-11 17:09:37 +0200 |
commit | ddeb3f7a1e25667694eaf3c8bf639b66d6809cb4 (patch) | |
tree | a02b62ce9ad9135dd8dc6aab13940e96ea87dcfe /tests | |
parent | ba8686d6af119fc7ecf734a2d2b6e319c8d74df5 (diff) | |
download | lua-compat-5.3-ddeb3f7a1e25667694eaf3c8bf639b66d6809cb4.tar.gz lua-compat-5.3-ddeb3f7a1e25667694eaf3c8bf639b66d6809cb4.tar.bz2 lua-compat-5.3-ddeb3f7a1e25667694eaf3c8bf639b66d6809cb4.zip |
split compat53 Lua module into separate modules that do/don't modify the global env
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test.lua b/tests/test.lua index 83e174e..664cfa6 100755 --- a/tests/test.lua +++ b/tests/test.lua | |||
@@ -37,7 +37,7 @@ local V = _VERSION:gsub("^.*(%d+)%.(%d+)$", "%1%2") | |||
37 | if jit then V = "jit" end | 37 | if jit then V = "jit" end |
38 | 38 | ||
39 | print( "testing Lua API ..." ) | 39 | print( "testing Lua API ..." ) |
40 | package.path = "../?.lua;"..package.path | 40 | package.path = "../?.lua;../?/init.lua;"..package.path |
41 | package.cpath = "./?-"..V..".so;./?-"..V..".dll;./?.so;./?.dll" | 41 | package.cpath = "./?-"..V..".so;./?-"..V..".dll;./?.so;./?.dll" |
42 | require("compat53") | 42 | require("compat53") |
43 | 43 | ||