Lines Matching refs:re
10 import re
47 re.compile(r"Booting from ROM"),
48 re.compile(r"Booting Zephyr OS build"),
49 re.compile(r"main\(\):enter"),
55 re.compile(r'Breakpoint 1 at 0x'),
56 re.compile(r'Breakpoint 2 at 0x'),
57 re.compile(r'Breakpoint 1, test '),
58 re.compile(r'Breakpoint 2, main '),
59 re.compile(r'GDB:PASSED'),
60 re.compile(r'Breakpoint 3, k_thread_abort '),
61 re.compile(r'2 .* breakpoint .* in main '),
67 re.compile(r'breakpoint .* in test '),
68 re.compile(r'breakpoint .* in k_thread_abort '),
74 re.compile(r'Inferior.*will be killed'), # Zephyr gdbstub
75 re.compile(r'Inferior.*detached') # QEMU gdbstub
87 …assert all([ex_re.search(gdb_process.stdout, re.MULTILINE) for ex_re in expected_gdb]), 'No expect…
88 …assert not any([ex_re.search(gdb_process.stdout, re.MULTILINE) for ex_re in unexpected_gdb]), 'Une…
89 …assert any([ex_re.search(gdb_process.stdout, re.MULTILINE) for ex_re in expected_gdb_detach]), 'No…
92 …assert all([ex_re.search(app_output, re.MULTILINE) for ex_re in expected_app]), 'No expected Appli…