Home | History | Annotate | Download | only in platform_CrosDisksFilesystem
      1 [
      2   {
      3     "description": "VFAT filesystem with label (read)",
      4     "block_size": 1024,
      5     "block_count": 65536,
      6     "filesystem_type": "vfat",
      7     "mkfs_options": [ "-F", "32", "-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": "VFAT filesystem with UUID (read)",
     14     "block_size": 1024,
     15     "block_count": 65536,
     16     "filesystem_type": "vfat",
     17     "mkfs_options": [ "-F", "32", "-i", "deadbeef" ],
     18     "test_mount_options": [ "ro", "nodev", "noexec", "nosuid", "sync" ],
     19     "expected_mount_status": 0,
     20     "expected_mount_path": "/media/removable/External Drive"
     21   },
     22   {
     23     "description": "VFAT filesystem with timezone > UTC+12",
     24     "block_size": 1024,
     25     "block_count": 65536,
     26     "filesystem_type": "vfat",
     27     "mkfs_options": [ "-F", "32", "-i", "deadbeef" ],
     28     "test_mount_options": [ "ro", "nodev", "noexec", "nosuid", "sync" ],
     29     "test_timezone": "Pacific/Kiritimati",
     30     "expected_mount_status": 0,
     31     "expected_mount_path": "/media/removable/External Drive"
     32   },
     33   {
     34     "description": "VFAT filesystem (write)",
     35     "is_write_test": true,
     36     "block_size": 1024,
     37     "block_count": 65536,
     38     "filesystem_type": "vfat",
     39     "mkfs_options": [ "-F", "32", "-n", "MYDISK" ],
     40     "test_mount_options": [ "rw", "nodev", "noexec", "nosuid", "sync" ],
     41     "expected_mount_status": 0,
     42     "expected_mount_path": "/media/removable/MYDISK"
     43   }
     44 ]
     45