Skip to content

Commit 33e93d7

Browse files
Add missing blocks and comments.
1 parent 6078e8c commit 33e93d7

File tree

5 files changed

+33
-1
lines changed

5 files changed

+33
-1
lines changed

examples/linux/mod.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,8 @@ impl TimeSource for Clock {
9191
}
9292
}
9393

94-
// End of file
94+
// ****************************************************************************
95+
//
96+
// End Of File
97+
//
98+
// ****************************************************************************

examples/readme_test.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,9 @@ fn main() -> Result<(), Error> {
109109
volume_mgr.close_dir(root_dir)?;
110110
Ok(())
111111
}
112+
113+
// ****************************************************************************
114+
//
115+
// End Of File
116+
//
117+
// ****************************************************************************

tests/directories.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Directory related tests
2+
13
mod utils;
24

35
#[derive(Debug, Clone)]
@@ -211,3 +213,9 @@ fn fat32_root_directory_listing() {
211213
);
212214
}
213215
}
216+
217+
// ****************************************************************************
218+
//
219+
// End Of File
220+
//
221+
// ****************************************************************************

tests/read_file.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Reading related tests
2+
13
mod utils;
24

35
static TEST_DAT_SHA256_SUM: &str =
@@ -167,3 +169,9 @@ fn read_file_backwards() {
167169
let hash = sha256::digest(flat);
168170
assert_eq!(&hash, TEST_DAT_SHA256_SUM);
169171
}
172+
173+
// ****************************************************************************
174+
//
175+
// End Of File
176+
//
177+
// ****************************************************************************

tests/utils/mod.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,3 +178,9 @@ pub fn make_time_source() -> TestTimeSource {
178178
},
179179
}
180180
}
181+
182+
// ****************************************************************************
183+
//
184+
// End Of File
185+
//
186+
// ****************************************************************************

0 commit comments

Comments
 (0)