On 2026-05-18T05:57:19, Heinrich Schuchardt <[email protected]> wrote: > test: fs: allow optional date field in ls output assertion > > fs_ls_generic() now prints a date between the file size and filename > when the filesystem sets FS_CAP_DATE (currently FAT and ext4). The > two regex patterns in test_fs1 used ' *' (zero or more spaces) to > match between the size and filename; that no longer matches when a > date is present. > > Change ' *' to ' .*' so the pattern matches both the old format > (size + spaces + name) and the new format (size + spaces + date + name). > > Signed-off-by: Heinrich Schuchardt <[email protected]> > > test/py/tests/test_fs/test_basic.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Simon Glass <[email protected]>

