Tarantool development patches archive
 help / color / mirror / Atom feed
From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: Evgeniy Temirgaleev <e.temirgaleev@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH luajit 3/3] test: add verbose mode for debug extension tests
Date: Sun, 28 Jun 2026 18:19:42 +0300	[thread overview]
Message-ID: <akE7jtGfORA0a-xg@root> (raw)
In-Reply-To: <1782610278.163228035@f762.i.mail.ru>

Hi, Evgeniy!
Thanks for the review!
Fixed your comments and force-pushed the branch.

On 28.06.26, Evgeniy Temirgaleev wrote:
> Hi, Sergey!
> 
> Thanks for the patch!
> 
> LGTM after fixing the comments.
> 
> --
> Best regards,
> Evgeniy Temirgaleev
> 
> > 
> > От кого: Sergey Kaplun <skaplun@tarantool.org>
> > Кому: Sergey Bronnikov <sergeyb@tarantool.org>, Evgeniy Temirgaleev <e.temirgaleev@tarantool.org
> > >
> > Копия: tarantool-patches@dev.tarantool.org, Sergey Kaplun <skaplun@tarantool.org
> > >
> > Дата: Четверг, 25 июня 2026, 23:29 +03:00
> > If the environment variable `DUBUGGER_TEST_VERBOSE` is set, each test

Updated the commit message:

| test: add verbose mode for debug extension tests
|
| If the environment variable `DEBUGGER_TEST_VERBOSE` is set, each test
| prints the generated command and its output and doesn't delete the files
| generated for it.

> > prints the generated command and its output and doesn't delete the files
> > generated for it.
> > ---
> > test/tarantool-debugger-tests/debug-extension-tests.py | 9 ++++++++-
> > 1 file changed, 8 insertions(+), 1 deletion(-)
> > 
> > diff --git a/test/tarantool-debugger-tests/debug-extension-tests.py
> > b/test/tarantool-debugger-tests/debug-extension-tests.py
> > index fc5d2c7b..adb83e1e 100644
> > --- a/test/tarantool-debugger-tests/debug-extension-tests.py
> > +++ b/test/tarantool-debugger-tests/debug-extension-tests.py
> > @@ -43,6 +43,8 @@ else:
> > # Don't run any initialization scripts.
> > RUN_CMD_FILE = ['--batch', '--nx', '--quiet', '--command']
> > 
> > +TEST_VERBOSE = os.getenv('DUBUGGER_TEST_VERBOSE', default=False)
> > 
> 
> Typo: /DU/DE/

Fixed, thanks!

===================================================================
diff --git a/test/tarantool-debugger-tests/debug-extension-tests.py b/test/tarantool-debugger-tests/debug-extension-tests.py
index adb83e1e..9bf375d5 100644
--- a/test/tarantool-debugger-tests/debug-extension-tests.py
+++ b/test/tarantool-debugger-tests/debug-extension-tests.py
@@ -43,7 +43,7 @@ else:
     # Don't run any initialization scripts.
     RUN_CMD_FILE = ['--batch', '--nx', '--quiet', '--command']
 
-TEST_VERBOSE = os.getenv('DUBUGGER_TEST_VERBOSE', default=False)
+TEST_VERBOSE = os.getenv('DEBUGGER_TEST_VERBOSE', default=False)
 
 RX_ADDR = r'0x[a-f0-9]+'
 RX_HASH = RX_ADDR  # The same pattern for hexademic values.
===================================================================

> 
> > 
> > +
> > RX_ADDR = r'0x[a-f0-9]+'
> > RX_HASH = RX_ADDR # The same pattern for hexademic values.
> > RX_BCN = r'00\d\d'
> > @@ -52,7 +54,7 @@ RX_IRREF = r'0x\d\d\d\d'
> > 
> > 
> > def persist(data):
> > - tmp = tempfile.NamedTemporaryFile(mode='w')
> > + tmp = tempfile.NamedTemporaryFile(mode='w', delete=not TEST_VERBOSE)
> > tmp.write(data)
> > tmp.flush()
> > return tmp
> > @@ -149,7 +151,12 @@ class TestCaseBase(unittest.TestCase):
> > LUAJIT_BINARY,
> > script_file.name,
> > ]
> > + if TEST_VERBOSE:
> > + print('# Test name: {}'.format(cls.__name__))
> > + print('# Test command: {}'.format(' '.join(process_cmd)))
> > cls.output = execute_process(process_cmd)
> > + if TEST_VERBOSE:
> > + print('# Command output: {}'.format(cls.output))
> > 
> 
> Please, append a new line before command (multiline) output.

Added:

===================================================================
diff --git a/test/tarantool-debugger-tests/debug-extension-tests.py b/test/tarantool-debugger-tests/debug-extension-tests.py
index 9bf375d5..8e069fe0 100644
--- a/test/tarantool-debugger-tests/debug-extension-tests.py
+++ b/test/tarantool-debugger-tests/debug-extension-tests.py
@@ -156,7 +156,7 @@ class TestCaseBase(unittest.TestCase):
             print('# Test command: {}'.format(' '.join(process_cmd)))
         cls.output = execute_process(process_cmd)
         if TEST_VERBOSE:
-            print('# Command output: {}'.format(cls.output))
+            print('# Command output:\n{}'.format(cls.output))
         cmd_file.close()
         script_file.close()
 
===================================================================

> 
> > 
> > cmd_file.close()
> > script_file.close()
> > 
> > --
> > 2.54.0
> >

-- 
Best regards,
Sergey Kaplun

      reply	other threads:[~2026-06-28 15:20 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-25 20:29 [Tarantool-patches] [PATCH luajit 0/3] Extend debug extension Sergey Kaplun via Tarantool-patches
2026-06-25 20:29 ` [Tarantool-patches] [PATCH luajit 1/3] dbg: introduce lj-ir, lj-jslots, lj-trace dumpers Sergey Kaplun via Tarantool-patches
2026-06-28  1:03   ` Evgeniy Temirgaleev via Tarantool-patches
2026-06-28 16:32     ` Sergey Kaplun via Tarantool-patches
2026-06-25 20:29 ` [Tarantool-patches] [PATCH luajit 2/3] dbg: introduce lj-ctype command, extend cdata dump Sergey Kaplun via Tarantool-patches
2026-06-29 13:55   ` Evgeniy Temirgaleev via Tarantool-patches
2026-06-25 20:29 ` [Tarantool-patches] [PATCH luajit 3/3] test: add verbose mode for debug extension tests Sergey Kaplun via Tarantool-patches
2026-06-28  1:31   ` Evgeniy Temirgaleev via Tarantool-patches
2026-06-28 15:19     ` Sergey Kaplun via Tarantool-patches [this message]

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=akE7jtGfORA0a-xg@root \
    --to=tarantool-patches@dev.tarantool.org \
    --cc=e.temirgaleev@tarantool.org \
    --cc=skaplun@tarantool.org \
    --subject='Re: [Tarantool-patches] [PATCH luajit 3/3] test: add verbose mode for debug extension 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