The ptrace test script was doing a chmod +x wait, which wouldn't work when run from the top-level directory. Use $basedir to fully qualify the pathname. This just happened to "work" when there was a wait test, but it was then being applied to the wait subdirectory, not the wait script. Signed-off-by: Stephen Smalley <sds@xxxxxxxxxxxxx> --- tests/ptrace/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ptrace/test b/tests/ptrace/test index 711d026..dc5bf40 100755 --- a/tests/ptrace/test +++ b/tests/ptrace/test @@ -5,7 +5,7 @@ BEGIN { plan tests => 2} $basedir = $0; $basedir =~ s|(.*)/[^/]*|$1|; -system "chmod +x wait"; +system "chmod +x $basedir/wait"; # Start the process to be traced. if(($pid=fork())==0){ -- 2.7.4 _______________________________________________ Selinux mailing list Selinux@xxxxxxxxxxxxx To unsubscribe, send email to Selinux-leave@xxxxxxxxxxxxx. To get help, send an email containing "help" to Selinux-request@xxxxxxxxxxxxx.