o s/debug/ptrace/ since shortly there will be tests involving other

forms of debugging.

Obtained from:	TrustedBSD Project
This commit is contained in:
Robert Watson 2001-04-13 16:09:40 +00:00
parent 991bcf5c04
commit 72919d5f6d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=75482

View File

@ -53,7 +53,7 @@ struct cred {
*/
struct scenario {
struct cred *sc_cred1, *sc_cred2; /* credentials of p1 and p2 */
int sc_candebug_errno; /* desired ptrace failure */
int sc_canptrace_errno; /* desired ptrace failure */
int sc_cansighup_errno; /* desired SIGHUP failure */
int sc_cansigsegv_errno; /* desired SIGSEGV failure */
int sc_cansee_errno; /* desired getprio failure */
@ -86,7 +86,7 @@ static struct cred creds[] = {
* Table of scenarios.
*/
static const struct scenario scenarios[] = {
/* cred1 cred2 debug sighup sigsegv see sched name */
/* cred1 cred2 ptrace sighup sigsegv see sched name */
{ &creds[0], &creds[0], 0, 0, 0, 0, 0, "0. priv on priv"},
{ &creds[0], &creds[1], 0, 0, 0, 0, 0, "1. priv on priv"},
{ &creds[1], &creds[0], 0, 0, 0, 0, 0, "2. priv on priv"},
@ -329,7 +329,7 @@ enact_scenario(int scenario)
error = errno;
name = "ptrace";
desirederror =
scenarios[scenario].sc_candebug_errno;
scenarios[scenario].sc_canptrace_errno;
break;
case LOOP_SIGHUP:
error = kill(pid1, SIGHUP);