Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/facebook/luaffifb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Gross <colesbury@gmail.com>2015-11-14 00:03:02 +0300
committerSam Gross <colesbury@gmail.com>2015-11-15 23:19:51 +0300
commit7203c89875b42a11de1f2982f8f2a7efae265f0e (patch)
tree5c985ea31e97c33cf33f5307613277a9ea0b87e4 /test.lua
parent6c1660b5f433af74951ef7a73a5a30c2f78c4eb0 (diff)
Add Travis CI build for Lua 5.1 and 5.2
Diffstat (limited to 'test.lua')
-rw-r--r--test.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.lua b/test.lua
index c0a0342..8472863 100644
--- a/test.lua
+++ b/test.lua
@@ -10,7 +10,7 @@ io.stdout:setvbuf('no')
local ffi = require 'ffi'
local dlls = {}
-dlls.__cdecl = ffi.load('test_cdecl')
+dlls.__cdecl = ffi.load(package.searchpath('ffi.libtest', package.cpath))
if ffi.arch == 'x86' and ffi.os == 'Windows' then
dlls.__stdcall = ffi.load('test_stdcall')