samples: soc_flash_nrf: Print finished message

Print a finished message, so that it is clear that this in the end
of the sample. This makes it certain that we didn't crash without
output on the last test.

Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
This commit is contained in:
Joakim Andersson 2023-12-07 19:16:57 +01:00 committed by Carles Cufí
parent 3063c6ae46
commit 29fc537bfb
3 changed files with 5 additions and 0 deletions

View file

@ -131,3 +131,5 @@ Sample Output
Test 8: Write block size API
write-block-size = 1
Finished!

View file

@ -29,3 +29,4 @@ tests:
- "Data read matches data written. Good!"
- "SoC flash consists of \\d+ pages."
- "write-block-size = 1"
- "Finished!"

View file

@ -191,5 +191,7 @@ int main(void)
printf("\nTest 8: Write block size API\n");
printf(" write-block-size = %u\n",
flash_get_write_block_size(flash_dev));
printf("\nFinished!\n");
return 0;
}