diff options
author | Tom Rini <trini@konsulko.com> | 2025-04-21 11:07:22 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-21 11:07:22 -0600 |
commit | 3e6bbc5adc20242a5056cfa142782debc0c368b5 (patch) | |
tree | 3c9cf41f69911d8d785f3d3892903b1e5fa4872f /test/py/tests/test_fs/conftest.py | |
parent | d36aa5057e6b19c5ff2075a02d12f1f13c39817b (diff) | |
parent | 6696f144279f9ee588463ad645e1f0c9b555ba84 (diff) |
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
Diffstat (limited to 'test/py/tests/test_fs/conftest.py')
-rw-r--r-- | test/py/tests/test_fs/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_fs/conftest.py b/test/py/tests/test_fs/conftest.py index c73fb4abbcb..0205048e73a 100644 --- a/test/py/tests/test_fs/conftest.py +++ b/test/py/tests/test_fs/conftest.py @@ -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 |