Module Name: src Committed By: gson Date: Sun Jul 25 10:21:44 UTC 2021
Modified Files: src/tests/usr.sbin/execsnoop: t_execsnoop.sh Log Message: Remove "pkill -9 execsnoop". It's wrong on so many levels: first of all, it does not actually kill anything because the process executing the execsnoop script is called "sh", not "execsnoop". And even if it would somehow kill the shell running the execsnoop script, it still would not kill the dtrace child process. On the other hand, if there happened to be an unrelated process actually called "execsnoop", it would kill that. The actual killing of the execsnoop sh and dtrace processes happens in the ATF cleanup stage (as it always has). To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/tests/usr.sbin/execsnoop/t_execsnoop.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.