• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[
2  {
3    "description": "ext2 filesystem with label (read)",
4    "block_size": 1024,
5    "block_count": 65536,
6    "filesystem_type": "ext2",
7    "mkfs_options": [ "-L", "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": "ext2 filesystem with UUID (read)",
14    "block_size": 1024,
15    "block_count": 65536,
16    "filesystem_type": "ext2",
17    "mkfs_options": [ "-U", "01234567-89ab-cdef-0123-456789abcdef" ],
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": "ext2 filesystem (write)",
24    "is_write_test": true,
25    "block_size": 1024,
26    "block_count": 65536,
27    "filesystem_type": "ext2",
28    "mkfs_options": [ "-L", "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