Skip to content

Commit

Permalink
refactor: removed println lines
Browse files Browse the repository at this point in the history
  • Loading branch information
lind committed Oct 23, 2024
1 parent 8554d5b commit 9d737a2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/tests/fs_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4486,12 +4486,9 @@ pub mod fs_tests {
assert_eq!(lseek_result, -1);
// If lseek failed, check the errno
let errno = unsafe { *libc::__errno_location() };
println!("lseek failed with errno: {} ()", errno);

assert_eq!(errno, libc::ESPIPE, "Expected ESPIPE error, got: {}", errno);
// Exit and finalize
let exit_status = cage.exit_syscall(libc::EXIT_SUCCESS);
println!("Exit syscall returned: {}", exit_status);
assert_eq!(exit_status, libc::EXIT_SUCCESS);
lindrustfinalize();
}
Expand Down

0 comments on commit 9d737a2

Please sign in to comment.