tester: Fix target_start_regex

It seems that the text used match with the regular expression does not
start with a line in general.
This commit is contained in:
Sebastian Huber 2022-01-13 17:27:52 +01:00
parent 3f3249c0f7
commit b8307aa287
4 changed files with 4 additions and 4 deletions

View File

@ -38,5 +38,5 @@ arch = arm
jobs = 1
tester = %{_rtscripts}/tftp.cfg
test_restarts = 3
target_start_regex = ^U-Boot .*
target_start_regex = .*U-Boot .*
requires = bsp_tty_dev

View File

@ -38,5 +38,5 @@ arch = powerpc
jobs = 1
tester = %{_rtscripts}/tftp.cfg
test_restarts = 3
target_start_regex = ^U-Boot .*
target_start_regex = .*U-Boot .*
requires = bsp_tty_dev

View File

@ -39,5 +39,5 @@ arch = powerpc
jobs = 1
tester = %{_rtscripts}/tftp.cfg
test_restarts = 3
target_start_regex = ^U-Boot .*
target_start_regex = .*U-Boot .*
requires = bsp_tty_dev

View File

@ -39,5 +39,5 @@ arch = powerpc
jobs = 1
tester = %{_rtscripts}/tftp.cfg
test_restarts = 3
target_start_regex = ^U-Boot .*
target_start_regex = .*U-Boot .*
requires = bsp_tty_dev