Hi, Sergey! thanks for the patch! LGTM On 14.08.2024 16:55, Sergey Kaplun wrote: > This patch removes the aforementioned test since it is part of the > test. > > Part of tarantool/tarantool#9398 > --- > test/LuaJIT-tests/misc/for_dir.lua | 13 ------------- > 1 file changed, 13 deletions(-) > delete mode 100644 test/LuaJIT-tests/misc/for_dir.lua > > diff --git a/test/LuaJIT-tests/misc/for_dir.lua b/test/LuaJIT-tests/misc/for_dir.lua > deleted file mode 100644 > index 4dd38dee..00000000 > --- a/test/LuaJIT-tests/misc/for_dir.lua > +++ /dev/null > @@ -1,13 +0,0 @@ > - > -local a,b,c = 10,1,-1 > -for i=1,20 do > - if c == -1 then > - a,b,c = 1,10,1 > - else > - a,b,c = 10,1,-1 > - end > - local x = 0 > - for i=a,b,c do for j=1,10 do end x=x+1 end > - assert(x == 10) > -end > -