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

fix: test case ut_lind_fs_mmap_no_read #67

Merged
merged 1 commit into from
Oct 23, 2024
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
13 changes: 8 additions & 5 deletions src/tests/fs_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,11 +507,14 @@ pub mod fs_tests {
//Checking if trying to map a file that does not
//allow reading correctly results in `File descriptor
//is not open for reading` error.
assert_eq!(
cage.mmap_syscall(0 as *mut u8, 5, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0),
-(Errno::EACCES as i32)
);

let mmap_result = cage.mmap_syscall(0 as *mut u8, 5, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
assert_eq!(mmap_result, -1, "Expected mmap to fail");
// Fetch and print the errno for debugging
let error = get_errno();
// Assert that the error is EACCES (Permission denied)
assert_eq!(error, libc::EACCES, "Expected errno to be EACCES for no read permission");
// Clean up and finalize
assert_eq!(cage.unlink_syscall(filepath), 0);
assert_eq!(cage.exit_syscall(libc::EXIT_SUCCESS), libc::EXIT_SUCCESS);
lindrustfinalize();
}
Expand Down
Loading