summaryrefslogtreecommitdiff
path: root/test/sys
diff options
context:
space:
mode:
authorMarcin Mielniczuk <marmistrz.dev@zoho.eu>2017-07-25 09:19:23 +0200
committerMarcin Mielniczuk <marmistrz.dev@zoho.eu>2017-07-25 09:19:23 +0200
commit9cf824810768734ea0187bf9e52a20ae332910b8 (patch)
treec8a058c44a29ab3d9d74b507daa256cc0efbb6ad /test/sys
parent1844378250ea9a4aacf438ea8eef586f8b8d8951 (diff)
downloadnix-9cf824810768734ea0187bf9e52a20ae332910b8.zip
Fix the tests compiling
Diffstat (limited to 'test/sys')
-rw-r--r--test/sys/test_wait.rs15
1 files changed, 9 insertions, 6 deletions
diff --git a/test/sys/test_wait.rs b/test/sys/test_wait.rs
index 210e6bc8..9300d6bf 100644
--- a/test/sys/test_wait.rs
+++ b/test/sys/test_wait.rs
@@ -41,7 +41,7 @@ fn test_wait_exit() {
// FIXME: qemu-user doesn't implement ptrace on most arches
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod ptrace {
- use nix::sys::ptrace::*;
+ use nix::sys::ptrace;
use nix::sys::ptrace::ptrace::*;
use nix::sys::signal::*;
use nix::sys::wait::*;
@@ -51,7 +51,8 @@ mod ptrace {
use libc::_exit;
fn ptrace_child() -> ! {
- let _ = ptrace(PTRACE_TRACEME, Pid::from_raw(0), ptr::null_mut(), ptr::null_mut());
+ // TODO ptrace::traceme will be added in #666
+ let _ = ptrace::ptrace(PTRACE_TRACEME, Pid::from_raw(0), ptr::null_mut(), ptr::null_mut());
// As recommended by ptrace(2), raise SIGTRAP to pause the child
// until the parent is ready to continue
let _ = raise(SIGTRAP);
@@ -62,16 +63,18 @@ mod ptrace {
// Wait for the raised SIGTRAP
assert_eq!(waitpid(child, None), Ok(WaitStatus::Stopped(child, SIGTRAP)));
// We want to test a syscall stop and a PTRACE_EVENT stop
- assert!(ptrace_setoptions(child, PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEEXIT).is_ok());
+ assert!(ptrace::setoptions(child, PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEEXIT).is_ok());
// First, stop on the next system call, which will be exit()
- assert!(ptrace(PTRACE_SYSCALL, child, ptr::null_mut(), ptr::null_mut()).is_ok());
+ // TODO ptrace::syscall will be added in #666
+ assert!(ptrace::ptrace(PTRACE_SYSCALL, child, ptr::null_mut(), ptr::null_mut()).is_ok());
assert_eq!(waitpid(child, None), Ok(WaitStatus::PtraceSyscall(child)));
// Then get the ptrace event for the process exiting
- assert!(ptrace(PTRACE_CONT, child, ptr::null_mut(), ptr::null_mut()).is_ok());
+ // TODO ptrace::cont will be added in #666
+ assert!(ptrace::ptrace(PTRACE_CONT, child, ptr::null_mut(), ptr::null_mut()).is_ok());
assert_eq!(waitpid(child, None), Ok(WaitStatus::PtraceEvent(child, SIGTRAP, PTRACE_EVENT_EXIT)));
// Finally get the normal wait() result, now that the process has exited
- assert!(ptrace(PTRACE_CONT, child, ptr::null_mut(), ptr::null_mut()).is_ok());
+ assert!(ptrace::ptrace(PTRACE_CONT, child, ptr::null_mut(), ptr::null_mut()).is_ok());
assert_eq!(waitpid(child, None), Ok(WaitStatus::Exited(child, 0)));
}