• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 (write)",
24    "is_write_test": true,
25    "block_size": 1024,
26    "block_count": 65536,
27    "filesystem_type": "vfat",
28    "mkfs_options": [ "-F", "32", "-n", "MYDISK" ],
29    "test_mount_options": [ "rw", "nodev", "noexec", "nosuid", "sync" ],
30    "expected_mount_status": 0,
31    "expected_mount_path": "/media/removable/MYDISK"
32  }
33]
34