From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: Maxim Kokryashkin <m.kokryashkin@tarantool.org>,
Sergey Bronnikov <sergeyb@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: [Tarantool-patches] [PATCH luajit 00/36] Rearrange LuaJIT misc tests
Date: Wed, 14 Aug 2024 16:55:41 +0300 [thread overview]
Message-ID: <cover.1723638851.git.skaplun@tarantool.org> (raw)
This patch set handles all tests from <misc/> directory: removes
duplicates or enables them as part of other categories.
Branch: https://github.com/tarantool/luajit/tree/skaplun/gh-9398-more-luajit-tests-p2
Issue: https://github.com/tarantool/tarantool/issues/9398
Sergey Kaplun (36):
test: don't run JIT-based LuaJIT tests without JIT
test: enable <misc/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: 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: 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: enable <misc/recurse_deep.lua> LuaJIT test
test: remove <misc/recurse_tail.lua> LuaJIT test
test: enable <misc/stack_gc.lua> LuaJIT test
test: enable <misc/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: 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/LuaJIT-tests/CMakeLists.txt | 10 +-
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 | 44 ++++
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} | 27 +-
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} | 35 +--
test/LuaJIT-tests/trace/phi/index | 1 +
.../{misc => trace}/stack_purge.lua | 14 +-
.../{misc => trace}/tcall_base.lua | 12 +-
test/LuaJIT-tests/trace/tcall_loop.lua | 10 +
test/LuaJIT-tests/trace/unordered_jit.lua | 240 ++++++++++++++++++
test/LuaJIT-tests/trace/wbarrier.lua | 57 +++++
61 files changed, 939 insertions(+), 1012 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} (60%)
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} (67%)
rename test/LuaJIT-tests/{misc => trace}/stack_purge.lua (74%)
rename test/LuaJIT-tests/{misc => trace}/tcall_base.lua (62%)
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
--
2.45.2
next reply other threads:[~2024-08-14 13:56 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-14 13:55 Sergey Kaplun via Tarantool-patches [this message]
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 01/36] test: don't run JIT-based LuaJIT tests without JIT Sergey Kaplun via Tarantool-patches
2024-08-15 12:47 ` Sergey Bronnikov via Tarantool-patches
2024-08-19 8:47 ` Sergey Kaplun via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 02/36] test: enable <misc/alias_alloc.lua> LuaJIT test Sergey Kaplun via Tarantool-patches
2024-08-15 12:51 ` Sergey Bronnikov via Tarantool-patches
2024-08-15 13:31 ` Sergey Kaplun via Tarantool-patches
2024-08-30 7:25 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 03/36] test: refactor <lang/coroutine.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:00 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 04/36] test: remove <misc/coro_yield.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:05 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 05/36] test: enable <misc/debug_gc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:09 ` Sergey Bronnikov via Tarantool-patches
2024-08-15 13:25 ` Sergey Kaplun via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 06/36] test: enable <misc/dualnum.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:11 ` Sergey Bronnikov via Tarantool-patches
2024-08-15 13:19 ` Sergey Bronnikov via Tarantool-patches
2024-08-15 13:22 ` Sergey Kaplun via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 07/36] test: remove <misc/fori_coerce.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:20 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 08/36] test: remove <misc/fori_dir.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:21 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 09/36] test: remove <misc/gc_rechain.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:22 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 10/36] test: enable <misc/gc_trace.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:24 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 11/36] test: enable <misc/gcstep.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:34 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 12/36] test: enable <misc/hook_active.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:38 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 13/36] test: enable <misc/hook_line.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:42 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 14/36] test: enable <misc/hook_norecord.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:56 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 15/36] test: enable <misc/hook_record.lua> " Sergey Kaplun via Tarantool-patches
2024-08-15 13:57 ` Sergey Bronnikov via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 16/36] test: enable <misc/hook_top.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:55 ` [Tarantool-patches] [PATCH luajit 17/36] test: enable <misc/jit_flush.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 18/36] test: remove <misc/loop_unroll.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 19/36] test: enable <misc/parse_comp.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 20/36] test: enable <misc/parse_esc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 21/36] test: enable <misc/parse_misc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 22/36] test: enable <misc/phi_conv.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 23/36] test: enable <misc/recurse_deep.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 24/36] test: remove <misc/recurse_tail.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 25/36] test: enable <misc/stack_gc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 26/36] test: enable <misc/stack_purge.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 27/36] test: enable <misc/stackov.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 28/36] test: enable <misc/stackovc.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 29/36] test: enable <misc/tcall_base.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 30/36] test: enable <misc/tcall_loop.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 31/36] test: enable <misc/tonumber_scan.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 32/36] test: remove <misc/uclo.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 33/36] test: enable <misc/unordered_jit.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 34/36] test: enable <misc/wbarrier.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 35/36] test: enable <misc/wbarrier_jit.lua> " Sergey Kaplun via Tarantool-patches
2024-08-14 13:56 ` [Tarantool-patches] [PATCH luajit 36/36] test: enable <misc/wbarrier_obar.lua> " 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=cover.1723638851.git.skaplun@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 luajit 00/36] 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