Skip to content

Commit

Permalink
Update disk image.
Browse files Browse the repository at this point in the history
I ran fsck on it and it wanted to ensure we had two copies of the Volume Label - one as a volume label file in the root and one in the filesystem metadata.
  • Loading branch information
thejpster committed Oct 30, 2024
1 parent 2409bdc commit 4ecad03
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tests/directories.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ fn fat16_root_directory_listing() {
},
Some(String::from(".fseventsd")),
),
(
ExpectedDirEntry {
name: String::from("P-FAT16"),
mtime: String::from("2024-10-30 18:43:12"),
ctime: String::from("2024-10-30 18:43:12"),
size: 0,
is_dir: false,
},
None,
),
];

let mut listing = Vec::new();
Expand Down Expand Up @@ -266,6 +276,16 @@ fn fat32_root_directory_listing() {
},
Some(String::from(".fseventsd")),
),
(
ExpectedDirEntry {
name: String::from("P-FAT32"),
mtime: String::from("2024-10-30 18:43:16"),
ctime: String::from("2024-10-30 18:43:16"),
size: 0,
is_dir: false,
},
None,
),
(
ExpectedDirEntry {
name: String::from("THISIS~9"),
Expand Down
Binary file modified tests/disk.img.gz
Binary file not shown.

0 comments on commit 4ecad03

Please sign in to comment.