Ran
|
Jobs
1
|
Files
89
|
Run time
8s
|
Badge
Embed ▾
README BADGES
|
push
github
LJ_GC64: Fix lua_concat(). Reported by Mathias Westerdahl. (cherry picked from commit 633f265f6) Lua 5.1 Reference Manual [1] defines a function `lua_concat`, that: > void lua_concat (lua_State *L, int n); > > Concatenates the n values at the top of the stack, pops them, and leaves > the result at the top. Without the patch `lua_concat()` behaved incorrectly with userdata with defined `__concat` metamethod. The problem is GC64-specific. Assuming we have three literals and a userdata with defined "__concat" metamethod on top of the Lua stack: 1 [string] 2 [string] 3 [string] 4 [string] 5 [userdata] <--- top On attempt to concatenate *two* items on top of the Lua stack, `lua_concat()` concatenates *four* items and leaves result on the top: 1 [string] 2 [string][string][string][userdata] <--- top The problem is in incorrect calculation of `n` counter in the loop in implementation of function `lua_concat`. Without the fix `n` is equal to 3 at the end of the first iteration and therefore it goes to the next iteration of concatenation. In the fixed implementation of `lua_concat()` `n` is equal to 1 at the end of the first loop iteration, decremented in a loop postcondition and breaks the loop. The patch fixes incorrect behaviour. 1. https://www.lua.org/manual/5.1/manual.html Sergey Bronnikov: * added the description and the test for the problem Part of tarantool/tarantool#8825
5332 of 5969 branches covered (0.0%)
Branch coverage included in aggregate %.
1 of 1 new or added line in 1 file covered. (100.0%)
20430 of 23288 relevant lines covered (87.73%)
1300396.0 hits per line
Lines | Coverage | ∆ | File |
---|---|---|---|
1 |
72.05 |
-0.08% | src/lj_crecord.c |
1 |
95.64 |
-0.05% | src/lj_record.c |
3 |
97.61 |
-1.44% | src/lj_str.c |
42 |
64.44 |
-20.44% | src/lj_sysprof.c |
ID | Job ID | Ran | Files | Coverage | |
---|---|---|---|---|---|
1 | 6432519503.1 | 89 |
88.05 |
GitHub Action Run |
Coverage | ∆ | File | Lines | Relevant | Covered | Missed | Hits/Line | Branch Hits | Branch Misses |
---|