[Tarantool-patches] [PATCH luajit 3/3] test: add verbose mode for debug extension tests

Evgeniy Temirgaleev e.temirgaleev at tarantool.org
Sun Jun 28 04:31:18 MSK 2026


Hi, Sergey!

Thanks for the patch!

LGTM after fixing the comments.

--
Best regards,
Evgeniy Temirgaleev

> 
> От кого: Sergey Kaplun <skaplun at tarantool.org>
> Кому: Sergey Bronnikov <sergeyb at tarantool.org>, Evgeniy Temirgaleev <e.temirgaleev at tarantool.org
> >
> Копия: tarantool-patches at dev.tarantool.org, Sergey Kaplun <skaplun at tarantool.org
> >
> Дата: Четверг, 25 июня 2026, 23:29 +03:00
> If the environment variable `DUBUGGER_TEST_VERBOSE` is set, each test
> 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/

> 
> +
> 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.

> 
> cmd_file.close()
> script_file.close()
> 
> --
> 2.54.0
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.tarantool.org/pipermail/tarantool-patches/attachments/20260628/0177b702/attachment.htm>


More information about the Tarantool-patches mailing list