diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-29 03:49:46 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-29 03:49:46 +0000 |
commit | 8d6ef1df3855daca2cb0cab27ce443816dba2d2b (patch) | |
tree | 7d65811c726d544dc6f5b0d6f5075c3dc335b378 /tests | |
parent | f03d1616f0b685bda23dfbe79d4d8cc7fd95fde5 (diff) | |
download | prosody-8d6ef1df3855daca2cb0cab27ce443816dba2d2b.tar.gz prosody-8d6ef1df3855daca2cb0cab27ce443816dba2d2b.zip |
Also look for binary modules in the parent directory when running tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test.lua b/tests/test.lua index 33af3e98..19aa8389 100644 --- a/tests/test.lua +++ b/tests/test.lua @@ -9,6 +9,7 @@ end local verbosity = tonumber(arg[1]) or 2; package.path = package.path..";../?.lua"; +package.cpath = package.cpath..";../?.so"; require "util.import" |