From: Mikhail Elhimov via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: Sergey Kaplun <skaplun@tarantool.org>,
Sergey Bronnikov <sergeyb@tarantool.org>,
Evgeniy Temirgaleev <e.temirgaleev@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: [Tarantool-patches] [PATCH luajit v2] test: fix checking macro support in dbg tests
Date: Fri, 18 Sep 2026 18:17:37 +0300 [thread overview]
Message-ID: <20260918151737.13126-1-m.elhimov@vk.team> (raw)
In-Reply-To: <aq1PVX7u9Vvizv1r@root>
Follows-up 7b919c0c0cc5089dc4a61511a502a9ab46c72a2b ("dbg: introduce
lj-gco command").
This patch fixes the mistake that was made initially. PROCESS_RUN is a
string, and the unpack operator should not be applied to it because
being applied to a string it produces the sequence of the characters,
which is finally transformed into the unexpected sequence of
one-character debugger's commands that don't make any sense.
---
Changes in v2:
- More detailed commit description
Branch: https://github.com/tarantool/luajit/tree/elhimov/gh-noticket-test-dbg-fix-checking-macro-support
test/tarantool-debugger-tests/debug-extension-tests.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/tarantool-debugger-tests/debug-extension-tests.py b/test/tarantool-debugger-tests/debug-extension-tests.py
index 895171a4..ab44121c 100644
--- a/test/tarantool-debugger-tests/debug-extension-tests.py
+++ b/test/tarantool-debugger-tests/debug-extension-tests.py
@@ -172,7 +172,7 @@ class TestCaseBase(unittest.TestCase):
def check_macro_debug_info():
cmd_file = persist('\n'.join([
'b lj_cf_print',
- *PROCESS_RUN,
+ PROCESS_RUN,
'n',
'p gcval(L->base)',
'q',
--
2.43.0
next prev parent reply other threads:[~2026-09-18 15:17 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-08 21:50 [Tarantool-patches] [PATCH luajit] " Mikhail Elhimov via Tarantool-patches
2026-09-14 8:38 ` Sergey Kaplun via Tarantool-patches
2026-09-15 23:06 ` Mikhail Elhimov via Tarantool-patches
2026-09-18 14:48 ` Sergey Kaplun via Tarantool-patches
2026-09-18 15:17 ` Mikhail Elhimov via Tarantool-patches [this message]
2026-09-15 23:29 ` [Tarantool-patches] [PATCH luajit v2] " Mikhail Elhimov 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=20260918151737.13126-1-m.elhimov@vk.team \
--to=tarantool-patches@dev.tarantool.org \
--cc=e.temirgaleev@tarantool.org \
--cc=m.elhimov@vk.team \
--cc=sergeyb@tarantool.org \
--cc=skaplun@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH luajit v2] test: fix checking macro support in dbg 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