1 [ 2 { 3 "description": "exFAT filesystem with label (read)", 4 "block_size": 1024, 5 "block_count": 65536, 6 "filesystem_type": "exfat", 7 "mkfs_options": [ "-n", "MyDisk" ], 8 "test_mount_options": [ "ro", "nodev", "noexec", "nosuid", "sync" ], 9 "expected_mount_status": 0, 10 "expected_mount_path": "/media/removable/MyDisk" 11 }, 12 { 13 "description": "exFAT filesystem without label (read)", 14 "block_size": 1024, 15 "block_count": 65536, 16 "filesystem_type": "exfat", 17 "test_mount_options": [ "ro", "nodev", "noexec", "nosuid", "sync" ], 18 "expected_mount_status": 0, 19 "expected_mount_path": "/media/removable/External Drive" 20 }, 21 { 22 "description": "exFAT filesystem (write)", 23 "is_write_test": true, 24 "block_size": 1024, 25 "block_count": 65536, 26 "filesystem_type": "exfat", 27 "mkfs_options": [ "-n", "MyDisk" ], 28 "test_mount_options": [ "rw", "nodev", "noexec", "nosuid", "sync" ], 29 "expected_mount_status": 0, 30 "expected_mount_path": "/media/removable/MyDisk" 31 } 32 ] 33