Skip to content
Snippets Groups Projects
Commit 67e79b15 authored by Nikolay Shirokovskiy's avatar Nikolay Shirokovskiy Committed by Vladimir Davydov
Browse files

test: turn LuaJIT off in tests with dlsym

`dlsym` is known to be buggy in FreeBSD. See #7640.

NO_DOC=internal
NO_CHANGELOG=internal
parent 571cdc3e
No related branches found
No related tags found
No related merge requests found
......@@ -129,6 +129,9 @@ local check_symbols = {
'luaJIT_profile_dumpstack',
}
-- TODO gh-7640 LuaJIT: ffi.C.dlsym() doesn't work on FreeBSD
jit.off()
test:plan(#check_symbols)
for _, sym in ipairs(check_symbols) do
check_symbol(sym)
......
......@@ -171,6 +171,9 @@ local curl_symbols = {
'curl_version_info',
}
-- TODO gh-7640 LuaJIT: ffi.C.dlsym() doesn't work on FreeBSD
jit.off()
test:test('curl_symbols', function(t)
t:plan(#curl_symbols)
for _, sym in ipairs(curl_symbols) do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment