From: Sergey Bronnikov via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: Sergey Kaplun <skaplun@tarantool.org>,
Maxim Kokryashkin <m.kokryashkin@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH v2 luajit 00/45] Rearrange LuaJIT misc tests
Date: Fri, 23 Aug 2024 18:55:51 +0300 [thread overview]
Message-ID: <0eca2d76-5398-4917-bfa1-75355629251a@tarantool.org> (raw)
In-Reply-To: <cover.1724228998.git.skaplun@tarantool.org>
[-- Attachment #1: Type: text/plain, Size: 10151 bytes --]
Sergey,
On 21.08.2024 11:58, Sergey Kaplun wrote:
> This patch set handles all tests from the <misc/> directory: removes
> duplicates or enables them as a part of other categories.
>
> Changes in v2:
> * Separate refactoring of the enabled tests, where the original
> patch does not include the whole test due to its enabling and fixing
> the indentation (as discussed with Sergey Bronnikov).
> * Updated the <LuaJIT-tests/README.md> to make it up-to-date.
>
> Branch:https://github.com/tarantool/luajit/tree/skaplun/gh-9398-more-luajit-tests-p2
> Issue:https://github.com/tarantool/tarantool/issues/9398
Thanks for patches! LGTM
> Sergey Kaplun (45):
> test: don't run JIT-based LuaJIT tests without JIT
> test: actualize <LuaJIT-tests/README.md>
> test: enable <misc/alias_alloc.lua> LuaJIT test
> test: refactor <alias_alloc.lua> LuaJIT test
> test: refactor <lang/coroutine.lua> LuaJIT test
> test: remove <misc/coro_yield.lua> LuaJIT test
> test: enable <misc/debug_gc.lua> LuaJIT test
> test: enable <misc/dualnum.lua> LuaJIT test
> test: refactor <lang/dualnum.lua> LuaJIT test
> test: remove <misc/fori_coerce.lua> LuaJIT test
> test: remove <misc/fori_dir.lua> LuaJIT test
> test: remove <misc/gc_rechain.lua> LuaJIT test
> test: enable <misc/gc_trace.lua> LuaJIT test
> test: refactor <trace/gc.lua> LuaJIT test
> test: enable <misc/gcstep.lua> LuaJIT test
> test: enable <misc/hook_active.lua> LuaJIT test
> test: enable <misc/hook_line.lua> LuaJIT test
> test: enable <misc/hook_norecord.lua> LuaJIT test
> test: enable <misc/hook_record.lua> LuaJIT test
> test: enable <misc/hook_top.lua> LuaJIT test
> test: enable <misc/jit_flush.lua> LuaJIT test
> test: remove <misc/loop_unroll.lua> LuaJIT test
> test: enable <misc/parse_comp.lua> LuaJIT test
> test: enable <misc/parse_esc.lua> LuaJIT test
> test: enable <misc/parse_misc.lua> LuaJIT test
> test: enable <misc/phi_conv.lua> LuaJIT test
> test: refactor <trace/phi/conv.lua> LuaJIT test
> test: enable <misc/recurse_deep.lua> LuaJIT test
> test: remove <misc/recurse_tail.lua> LuaJIT test
> test: enable <misc/stack_gc.lua> LuaJIT test
> test: refactor <lang/gc_stack.lua> LuaJIT test
> test: enable <misc/stack_purge.lua> LuaJIT test
> test: refactor <trace/stack_purge.lua> LuaJIT test
> test: enable <misc/stackov.lua> LuaJIT test
> test: enable <misc/stackovc.lua> LuaJIT test
> test: enable <misc/tcall_base.lua> LuaJIT test
> test: refactor <trace/tcall_base.lua> LuaJIT test
> test: enable <misc/tcall_loop.lua> LuaJIT test
> test: enable <misc/tonumber_scan.lua> LuaJIT test
> test: remove <misc/uclo.lua> LuaJIT test
> test: enable <misc/unordered_jit.lua> LuaJIT test
> test: enable <misc/wbarrier.lua> LuaJIT test
> test: enable <misc/wbarrier_jit.lua> LuaJIT test
> test: enable <misc/wbarrier_obar.lua> LuaJIT test
> test: update <LuaJIT-tests/README.md>
>
> test/LuaJIT-tests/CMakeLists.txt | 10 +-
> test/LuaJIT-tests/README.md | 17 +-
> test/LuaJIT-tests/lang/coroutine.lua | 8 -
> .../deep_recursion.lua} | 8 +-
> test/LuaJIT-tests/{misc => lang}/dualnum.lua | 24 +-
> .../{misc/debug_gc.lua => lang/gc_debug.lua} | 31 ++-
> .../{misc/stack_gc.lua => lang/gc_stack.lua} | 6 +-
> test/LuaJIT-tests/lang/gc_step.lua | 39 +++
> test/LuaJIT-tests/lang/hook_active.lua | 102 ++++++++
> test/LuaJIT-tests/lang/hook_line.lua | 45 ++++
> test/LuaJIT-tests/lang/hook_top.lua | 59 +++++
> test/LuaJIT-tests/lang/index | 15 +-
> test/LuaJIT-tests/lang/parse_comp.lua | 12 +
> test/LuaJIT-tests/lang/parse_esc.lua | 10 +
> test/LuaJIT-tests/lang/parse_misc.lua | 31 +++
> test/LuaJIT-tests/lang/stackov.lua | 48 ++++
> test/LuaJIT-tests/lang/stackov_c.lua | 12 +
> test/LuaJIT-tests/lang/wbarrier.lua | 11 +
> test/LuaJIT-tests/lib/base/index | 1 +
> .../{misc => lib/base}/tonumber_scan.lua | 58 +++--
> test/LuaJIT-tests/lib/coroutine/index | 1 +
> test/LuaJIT-tests/lib/coroutine/traceback.lua | 14 +
> test/LuaJIT-tests/misc/coro_traceback.lua | 8 -
> test/LuaJIT-tests/misc/coro_yield.lua | 111 --------
> test/LuaJIT-tests/misc/for_dir.lua | 13 -
> test/LuaJIT-tests/misc/fori_coerce.lua | 33 ---
> test/LuaJIT-tests/misc/gc_rechain.lua | 32 ---
> test/LuaJIT-tests/misc/gcstep.lua | 33 ---
> test/LuaJIT-tests/misc/hook_active.lua | 95 -------
> test/LuaJIT-tests/misc/hook_line.lua | 41 ---
> test/LuaJIT-tests/misc/hook_norecord.lua | 12 -
> test/LuaJIT-tests/misc/hook_record.lua | 8 -
> test/LuaJIT-tests/misc/hook_top.lua | 55 ----
> test/LuaJIT-tests/misc/jit_flush.lua | 50 ----
> test/LuaJIT-tests/misc/loop_unroll.lua | 35 ---
> test/LuaJIT-tests/misc/parse_comp.lua | 13 -
> test/LuaJIT-tests/misc/parse_esc.lua | 7 -
> test/LuaJIT-tests/misc/parse_misc.lua | 31 ---
> test/LuaJIT-tests/misc/recurse_tail.lua | 22 --
> test/LuaJIT-tests/misc/stackov.lua | 40 ---
> test/LuaJIT-tests/misc/stackovc.lua | 4 -
> test/LuaJIT-tests/misc/tcall_loop.lua | 8 -
> test/LuaJIT-tests/misc/uclo.lua | 91 -------
> test/LuaJIT-tests/misc/unordered_jit.lua | 96 -------
> test/LuaJIT-tests/misc/wbarrier.lua | 7 -
> test/LuaJIT-tests/misc/wbarrier_jit.lua | 18 --
> test/LuaJIT-tests/misc/wbarrier_obar.lua | 22 --
> test/LuaJIT-tests/opt/index | 1 +
> .../{misc => opt/mem}/alias_alloc.lua | 30 +--
> test/LuaJIT-tests/opt/mem/index | 1 +
> .../{misc/gc_trace.lua => trace/gc.lua} | 32 ++-
> test/LuaJIT-tests/trace/hook_norecord.lua | 12 +
> test/LuaJIT-tests/trace/hook_record.lua | 7 +
> test/LuaJIT-tests/trace/index | 9 +
> test/LuaJIT-tests/trace/jit_flush.lua | 66 +++++
> .../{misc/phi_conv.lua => trace/phi/conv.lua} | 37 +--
> test/LuaJIT-tests/trace/phi/index | 1 +
> .../{misc => trace}/stack_purge.lua | 14 +-
> .../{misc => trace}/tcall_base.lua | 14 +-
> test/LuaJIT-tests/trace/tcall_loop.lua | 10 +
> test/LuaJIT-tests/trace/unordered_jit.lua | 240 ++++++++++++++++++
> test/LuaJIT-tests/trace/wbarrier.lua | 57 +++++
> 62 files changed, 959 insertions(+), 1019 deletions(-)
> delete mode 100644 test/LuaJIT-tests/lang/coroutine.lua
> rename test/LuaJIT-tests/{misc/recurse_deep.lua => lang/deep_recursion.lua} (84%)
> rename test/LuaJIT-tests/{misc => lang}/dualnum.lua (57%)
> rename test/LuaJIT-tests/{misc/debug_gc.lua => lang/gc_debug.lua} (63%)
> rename test/LuaJIT-tests/{misc/stack_gc.lua => lang/gc_stack.lua} (76%)
> create mode 100644 test/LuaJIT-tests/lang/gc_step.lua
> create mode 100644 test/LuaJIT-tests/lang/hook_active.lua
> create mode 100644 test/LuaJIT-tests/lang/hook_line.lua
> create mode 100644 test/LuaJIT-tests/lang/hook_top.lua
> create mode 100644 test/LuaJIT-tests/lang/parse_comp.lua
> create mode 100644 test/LuaJIT-tests/lang/parse_esc.lua
> create mode 100644 test/LuaJIT-tests/lang/parse_misc.lua
> create mode 100644 test/LuaJIT-tests/lang/stackov.lua
> create mode 100644 test/LuaJIT-tests/lang/stackov_c.lua
> create mode 100644 test/LuaJIT-tests/lang/wbarrier.lua
> rename test/LuaJIT-tests/{misc => lib/base}/tonumber_scan.lua (93%)
> create mode 100644 test/LuaJIT-tests/lib/coroutine/traceback.lua
> delete mode 100644 test/LuaJIT-tests/misc/coro_traceback.lua
> delete mode 100644 test/LuaJIT-tests/misc/coro_yield.lua
> delete mode 100644 test/LuaJIT-tests/misc/for_dir.lua
> delete mode 100644 test/LuaJIT-tests/misc/fori_coerce.lua
> delete mode 100644 test/LuaJIT-tests/misc/gc_rechain.lua
> delete mode 100644 test/LuaJIT-tests/misc/gcstep.lua
> delete mode 100644 test/LuaJIT-tests/misc/hook_active.lua
> delete mode 100644 test/LuaJIT-tests/misc/hook_line.lua
> delete mode 100644 test/LuaJIT-tests/misc/hook_norecord.lua
> delete mode 100644 test/LuaJIT-tests/misc/hook_record.lua
> delete mode 100644 test/LuaJIT-tests/misc/hook_top.lua
> delete mode 100644 test/LuaJIT-tests/misc/jit_flush.lua
> delete mode 100644 test/LuaJIT-tests/misc/loop_unroll.lua
> delete mode 100644 test/LuaJIT-tests/misc/parse_comp.lua
> delete mode 100644 test/LuaJIT-tests/misc/parse_esc.lua
> delete mode 100644 test/LuaJIT-tests/misc/parse_misc.lua
> delete mode 100644 test/LuaJIT-tests/misc/recurse_tail.lua
> delete mode 100644 test/LuaJIT-tests/misc/stackov.lua
> delete mode 100644 test/LuaJIT-tests/misc/stackovc.lua
> delete mode 100644 test/LuaJIT-tests/misc/tcall_loop.lua
> delete mode 100644 test/LuaJIT-tests/misc/uclo.lua
> delete mode 100644 test/LuaJIT-tests/misc/unordered_jit.lua
> delete mode 100644 test/LuaJIT-tests/misc/wbarrier.lua
> delete mode 100644 test/LuaJIT-tests/misc/wbarrier_jit.lua
> delete mode 100644 test/LuaJIT-tests/misc/wbarrier_obar.lua
> rename test/LuaJIT-tests/{misc => opt/mem}/alias_alloc.lua (53%)
> create mode 100644 test/LuaJIT-tests/opt/mem/index
> rename test/LuaJIT-tests/{misc/gc_trace.lua => trace/gc.lua} (54%)
> create mode 100644 test/LuaJIT-tests/trace/hook_norecord.lua
> create mode 100644 test/LuaJIT-tests/trace/hook_record.lua
> create mode 100644 test/LuaJIT-tests/trace/jit_flush.lua
> rename test/LuaJIT-tests/{misc/phi_conv.lua => trace/phi/conv.lua} (65%)
> rename test/LuaJIT-tests/{misc => trace}/stack_purge.lua (74%)
> rename test/LuaJIT-tests/{misc => trace}/tcall_base.lua (55%)
> create mode 100644 test/LuaJIT-tests/trace/tcall_loop.lua
> create mode 100644 test/LuaJIT-tests/trace/unordered_jit.lua
> create mode 100644 test/LuaJIT-tests/trace/wbarrier.lua
>
[-- Attachment #2: Type: text/html, Size: 10811 bytes --]
next prev parent reply other threads:[~2024-08-23 15:55 UTC|newest]
Thread overview: 157+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-21 8:58 Sergey Kaplun via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 01/45] test: don't run JIT-based LuaJIT tests without JIT Sergey Kaplun via Tarantool-patches
2024-08-21 15:24 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:53 ` Maxim Kokryashkin via Tarantool-patches
2024-09-04 22:55 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 02/45] test: actualize <LuaJIT-tests/README.md> Sergey Kaplun via Tarantool-patches
2024-08-21 15:27 ` Sergey Bronnikov via Tarantool-patches
2024-08-21 16:40 ` Sergey Kaplun via Tarantool-patches
2024-09-04 22:54 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 03/45] test: enable <misc/alias_alloc.lua> LuaJIT test Sergey Kaplun via Tarantool-patches
2024-08-21 16:15 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:55 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 04/45] test: refactor <alias_alloc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-21 16:18 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:55 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 05/45] test: refactor <lang/coroutine.lua> " Sergey Kaplun via Tarantool-patches
2024-08-21 16:20 ` Sergey Bronnikov via Tarantool-patches
2024-08-21 16:27 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:56 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 06/45] test: remove <misc/coro_yield.lua> " Sergey Kaplun via Tarantool-patches
2024-08-21 16:23 ` Sergey Bronnikov via Tarantool-patches
2024-08-21 16:36 ` Sergey Kaplun via Tarantool-patches
2024-08-22 15:04 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:56 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 07/45] test: enable <misc/debug_gc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 15:04 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:57 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 08/45] test: enable <misc/dualnum.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:54 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:57 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 09/45] test: refactor <lang/dualnum.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 15:05 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:58 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 10/45] test: remove <misc/fori_coerce.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:53 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:58 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 11/45] test: remove <misc/fori_dir.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 15:05 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:58 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 12/45] test: remove <misc/gc_rechain.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:53 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 22:59 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 13/45] test: enable <misc/gc_trace.lua> " Sergey Kaplun via Tarantool-patches
[not found] ` <4f43c5dc-d8c2-48a1-a26b-00b626ce69e5@tarantool.org>
2024-08-22 12:54 ` Sergey Kaplun via Tarantool-patches
2024-08-22 15:06 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:04 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 14/45] test: refactor <trace/gc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:53 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:04 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 15/45] test: enable <misc/gcstep.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 12:14 ` Sergey Bronnikov via Tarantool-patches
2024-08-22 12:57 ` Sergey Kaplun via Tarantool-patches
2024-08-22 15:07 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:05 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 16/45] test: enable <misc/hook_active.lua> " Sergey Kaplun via Tarantool-patches
2024-08-23 14:35 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:11 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 17/45] test: enable <misc/hook_line.lua> " Sergey Kaplun via Tarantool-patches
2024-08-23 14:38 ` Sergey Bronnikov via Tarantool-patches
2024-08-26 6:39 ` Sergey Kaplun via Tarantool-patches
2024-08-29 9:44 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:12 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 18/45] test: enable <misc/hook_norecord.lua> " Sergey Kaplun via Tarantool-patches
2024-09-04 23:12 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 19/45] test: enable <misc/hook_record.lua> " Sergey Kaplun via Tarantool-patches
2024-08-23 15:12 ` Sergey Bronnikov via Tarantool-patches
2024-08-23 15:15 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:12 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 20/45] test: enable <misc/hook_top.lua> " Sergey Kaplun via Tarantool-patches
2024-08-23 15:17 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:13 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 21/45] test: enable <misc/jit_flush.lua> " Sergey Kaplun via Tarantool-patches
2024-08-23 15:30 ` Sergey Bronnikov via Tarantool-patches
2024-08-26 6:50 ` Sergey Kaplun via Tarantool-patches
2024-08-29 9:44 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:14 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 22/45] test: remove <misc/loop_unroll.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 12:33 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:14 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 23/45] test: enable <misc/parse_comp.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:07 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:14 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 24/45] test: enable <misc/parse_esc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:28 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:14 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 25/45] test: enable <misc/parse_misc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:31 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:15 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 26/45] test: enable <misc/phi_conv.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:39 ` Sergey Bronnikov via Tarantool-patches
2024-08-22 13:41 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:16 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 27/45] test: refactor <trace/phi/conv.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:41 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:16 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 28/45] test: enable <misc/recurse_deep.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:44 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:16 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 29/45] test: remove <misc/recurse_tail.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:45 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:16 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 30/45] test: enable <misc/stack_gc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:46 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:16 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 31/45] test: refactor <lang/gc_stack.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:47 ` Sergey Bronnikov via Tarantool-patches
2024-08-26 6:56 ` Sergey Kaplun via Tarantool-patches
2024-08-29 9:45 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:17 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 32/45] test: enable <misc/stack_purge.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:49 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:18 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 33/45] test: refactor <trace/stack_purge.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:49 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:18 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 34/45] test: enable <misc/stackov.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:51 ` Sergey Bronnikov via Tarantool-patches
2024-08-22 14:34 ` Sergey Kaplun via Tarantool-patches
2024-08-23 15:42 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:19 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 35/45] test: enable <misc/stackovc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 13:53 ` Sergey Bronnikov via Tarantool-patches
2024-08-22 14:36 ` Sergey Kaplun via Tarantool-patches
2024-08-23 15:41 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:19 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 36/45] test: enable <misc/tcall_base.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:11 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:19 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 37/45] test: refactor <trace/tcall_base.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:12 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:19 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 38/45] test: enable <misc/tcall_loop.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:14 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:19 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 39/45] test: enable <misc/tonumber_scan.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:33 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:20 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 40/45] test: remove <misc/uclo.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:43 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:21 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 41/45] test: enable <misc/unordered_jit.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:49 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:21 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 42/45] test: enable <misc/wbarrier.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:51 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:21 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 43/45] test: enable <misc/wbarrier_jit.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 14:52 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:21 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 44/45] test: enable <misc/wbarrier_obar.lua> " Sergey Kaplun via Tarantool-patches
2024-08-22 15:17 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:22 ` Maxim Kokryashkin via Tarantool-patches
2024-08-21 8:58 ` [Tarantool-patches] [PATCH v2 luajit 45/45] test: update <LuaJIT-tests/README.md> Sergey Kaplun via Tarantool-patches
2024-08-22 15:17 ` Sergey Bronnikov via Tarantool-patches
2024-09-04 23:22 ` Maxim Kokryashkin via Tarantool-patches
2024-08-23 15:55 ` Sergey Bronnikov via Tarantool-patches [this message]
2024-10-18 15:07 ` [Tarantool-patches] [PATCH v2 luajit 00/45] Rearrange LuaJIT misc tests Sergey Kaplun via Tarantool-patches
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0eca2d76-5398-4917-bfa1-75355629251a@tarantool.org \
--to=tarantool-patches@dev.tarantool.org \
--cc=m.kokryashkin@tarantool.org \
--cc=sergeyb@tarantool.org \
--cc=skaplun@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH v2 luajit 00/45] Rearrange LuaJIT misc tests' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox