Re: [PATCH] tests/tcg/aarch64: Use raw strings for regexes in test-mte.py

2024-10-21 Thread Alex Bennée
Gustavo Romero writes: > Use Python's raw string notation instead of string literals for regex so > it's not necessary to double backslashes when regex special forms are > used. Raw notation is preferred for regex and easier to read. > > Signed-off-by: Gustavo Romero Queued to gdbstub/next, tha

Re: [PATCH] tests/tcg/aarch64: Use raw strings for regexes in test-mte.py

2024-10-15 Thread Philippe Mathieu-Daudé
On 15/10/24 11:08, Gustavo Romero wrote: Use Python's raw string notation instead of string literals for regex so it's not necessary to double backslashes when regex special forms are used. Raw notation is preferred for regex and easier to read. Signed-off-by: Gustavo Romero --- tests/tcg/aar

[PATCH] tests/tcg/aarch64: Use raw strings for regexes in test-mte.py

2024-10-15 Thread Gustavo Romero
Use Python's raw string notation instead of string literals for regex so it's not necessary to double backslashes when regex special forms are used. Raw notation is preferred for regex and easier to read. Signed-off-by: Gustavo Romero --- tests/tcg/aarch64/gdbstub/test-mte.py | 4 ++-- 1 file ch