Skip to content

fs-tests: doc improvements #558

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions uefi-test-runner/src/proto/media/known_disk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ fn test_raw_disk_io2(handle: Handle, bt: &BootServices) {
}
}

/// Run various tests on a special test disk. The disk is created by
/// xtask/src/disk.rs.
/// Run various file-system related tests on a special test disk. The disk is created by
/// `xtask/src/disk.rs`.
pub fn test_known_disk(bt: &BootServices) {
// This test is only valid when running in the specially-prepared
// qemu with the test disk.
Expand Down
3 changes: 3 additions & 0 deletions uefi-test-runner/src/proto/media/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ fn test_file_system_info(directory: &mut Directory) {
assert_eq!(fs_info.volume_label(), fs_vol.volume_label());
}

/// Tests the following protocols:
/// - [`SimpleFileSystem`]
/// - [`PartitionInfo`]
pub fn test(bt: &BootServices) {
info!("Testing Media Access protocols");

Expand Down