Skip to content
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

Add helper function to fake Kernel #475

Merged
merged 1 commit into from
Jul 11, 2023
Merged
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
14 changes: 14 additions & 0 deletions unittest/src/fake/kernel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,20 @@ impl Kernel {
pub fn take_syscall_log(&self) -> Vec<SyscallLogEntry> {
with_kernel_data(|kernel_data| std::mem::take(&mut kernel_data.unwrap().syscall_log))
}

/// Returns true if the specified driver installed.
pub fn is_driver_present(driver_num: u32) -> bool {
with_kernel_data(|kernel_data| {
kernel_data.map_or(false, |kernel| kernel.drivers.contains_key(&driver_num))
})
}

/// Returns true if there are any pending upcalls.
pub fn is_upcall_pending() -> bool {
with_kernel_data(|kernel_data| {
kernel_data.map_or(false, |kernel| !kernel.upcall_queue.is_empty())
jrvanwhy marked this conversation as resolved.
Show resolved Hide resolved
})
}
}

impl Drop for Kernel {
Expand Down
Loading