From 491fa55826012889e9cced217b6c7307223f22ca Mon Sep 17 00:00:00 2001 From: Christian Taedcke Date: Thu, 2 Apr 2020 09:41:56 +0200 Subject: [PATCH] samples: drivers/entropy yaml regex fix The last regex in the yaml file did not match when executing the test on an embedded target. The expected two spaces are not present at the beginning of the line. Fixes #23919 Signed-off-by: Christian Taedcke --- samples/drivers/entropy/sample.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/drivers/entropy/sample.yaml b/samples/drivers/entropy/sample.yaml index 434ecec1130f..47d63ed7c20a 100644 --- a/samples/drivers/entropy/sample.yaml +++ b/samples/drivers/entropy/sample.yaml @@ -11,4 +11,4 @@ tests: regex: - "Entropy Example! (.*)" - "entropy device is (.*), name is (.*)" - - "( 0x([0-9a-f]){2}){9}" + - "(\\s*0x([0-9a-f]){2}){9}"