1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 09:33:50 +01:00

tests/trace: declare expect regexp as raw strings

This commit is contained in:
Alexandre Abadie 2020-11-03 14:46:11 +01:00
parent dd13e5c639
commit ef871b3424
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -5,8 +5,8 @@ from testrunner import run
def testfunc(child):
child.expect("n= 0 t=\ +\d+ v=0x00000000\r\n")
child.expect("n= 1 t=\+\ +\d+ v=0x00000001\r\n")
child.expect(r"n= 0 t=\ +\d+ v=0x00000000\r\n")
child.expect(r"n= 1 t=\+\ +\d+ v=0x00000001\r\n")
if __name__ == "__main__":