On MacOS, external disks that are formatted with FAT16/FAT32 (yes, I still have some!) are filtered (is_physical) from the list of file systems because the file system name is 'msdos', which isn't in the FileSystem enum.
Coverage decreased (-0.6%) to 45.551% when pulling 73b4a971a2d9c8c5ed02c6de7ab3d2cbdfc128c7 on bvaisvil:file_system_names into b292f1535bb27c03800cdb7509fa81a40859fbbb on heim-rs:master.
On MacOS, external disks that are formatted with FAT16/FAT32 (yes, I still have some!) are filtered (
is_physical
) from the list of file systems because the file system name is 'msdos', which isn't in theFileSystem
enum.Before the change:
After the change:
Though the result from
statfs
ismsdos
I made the enum valueFat
. Let me know if you'd like something different or to use the existingVFat