Sergey Kaplun
Sergey Kaplun
This ticket is an umbrella for all commits we planning to back-port in the next Q. This list includes commits excluded from #6548 and may be updated later with some...
There are a lot of warnings like: ``` ... lj_str.c: In function 'lj_str_new': lj_str.c:184:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] 184 | MSize h = lua_hash(str, len);...
How to reproduce: ``` $ tarantool Tarantool 2.9.0-372-g7da4b14 type 'help' for interactive help tarantool> debug.debug() lua_debug> [1]+ Stopped tarantool ``` Debug input hangs and nothing happens. Expected behavior: ``` $...
This ticket is an umbrella for all commits we planning to back-port in the next Q. This list includes commits excluded from #9145 and may be updated later with some...
* test: enable LuaJIT test * test: enable LuaJIT test * test: enable LuaJIT test * test: enable LuaJIT test * test: enable LuaJIT test * test: enable LuaJIT test...
When compiling LuaJIT with GCC + ASAN, I've got the following error: ```sh LD_LIBRARY_PATH="test/tarantool-tests/lj-802-panic-at-mcode-protfail/:" LUA_PATH="test/tarantool-tests/?/init.lua;test/tarantool-tests/?.lua;;" src/luajit /home/burii/builds_workspace/luajit/gh-9398-more-luajit-tests/test/tarantool-tests/lj-802-panic-at-mcode-protfail.test.lua ``` ``` TAP version 13 1..4 not ok - Panic occurred as a...
A quick grep inside our codebase found several places where assert has side effects (due to typos in them, I suppose). ```sh grep -n -A1 'assert([^=]*[^!=~]=$' -R src/ src/box/sql/build.c:3664: assert(sql_session_opts[id...
This ticket is an umbrella for all commits we planning to back-port in the next Q. This list includes commits excluded from #9595 and may be updated later with some...
Reported by @RunsFor. When `luaT_[c]pcall()` is failed due to some error, we use `luaT_toerror()` on the returned error. Nevertheless, `luaT_toerror()` may raise an error too (for example, when the Lua...
Hand check LuaJIT builds for each architecture is uncomfortable. It will be nice to create Docker images for different CPU architectures supported by LuaJIT, to be checked them into LuaJIT...