Merge patch series "fs: exfat: Flush node before put in read() callback"
This series from Marek Vasut <marex@denx.de> includes a number of fixes to the exFAT filesystem support that he recently added. Link: https://lore.kernel.org/r/20250413085740.5953-1-marex@denx.de
This commit is contained in:
@@ -17,7 +17,7 @@ supported_fs_fat = ['fat12', 'fat16']
|
||||
supported_fs_mkdir = ['fat12', 'fat16', 'fat32', 'exfat', 'fs_generic']
|
||||
supported_fs_unlink = ['fat12', 'fat16', 'fat32', 'exfat', 'fs_generic']
|
||||
supported_fs_symlink = ['ext4']
|
||||
supported_fs_rename = ['fat12', 'fat16', 'fat32']
|
||||
supported_fs_rename = ['fat12', 'fat16', 'fat32', 'exfat', 'fs_generic']
|
||||
|
||||
#
|
||||
# Filesystem test specific setup
|
||||
|
@@ -35,6 +35,19 @@ class TestFsBasic(object):
|
||||
'%sls host 0:0 invalid_d' % fs_cmd_prefix)
|
||||
assert('' == output)
|
||||
|
||||
with ubman.log.section('Test Case 1c - test -e'):
|
||||
# Test Case 1 - test -e
|
||||
output = ubman.run_command_list([
|
||||
'host bind 0 %s' % fs_img,
|
||||
'test -e host 0:0 1MB.file && echo PASS'])
|
||||
assert('PASS' in ''.join(output))
|
||||
|
||||
with ubman.log.section('Test Case 1d - test -e (invalid file)'):
|
||||
# In addition, test with a nonexistent file to see if we crash.
|
||||
output = ubman.run_command(
|
||||
'test -e host 0:0 2MB.file || echo PASS')
|
||||
assert('PASS' in ''.join(output))
|
||||
|
||||
def test_fs2(self, ubman, fs_obj_basic):
|
||||
"""
|
||||
Test Case 2 - size command for a small file
|
||||
|
Reference in New Issue
Block a user