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