Module Name: src
Committed By: kamil
Date: Mon Apr 9 15:45:16 UTC 2018
Modified Files:
src/tests/lib/libc/sys: t_ptrace_wait.c
Log Message:
Improve documentation of the ATF test t_ptrace_wait*: traceme2
Set the description to:
Verify that a signal emitted by a tracer to a child is caught by
a signal handler.
Sponsored by <The NetBSD Foundation>
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/tests/lib/libc/sys/t_ptrace_wait.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/sys/t_ptrace_wait.c
diff -u src/tests/lib/libc/sys/t_ptrace_wait.c:1.26 src/tests/lib/libc/sys/t_ptrace_wait.c:1.27
--- src/tests/lib/libc/sys/t_ptrace_wait.c:1.26 Tue Mar 13 14:54:13 2018
+++ src/tests/lib/libc/sys/t_ptrace_wait.c Mon Apr 9 15:45:16 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: t_ptrace_wait.c,v 1.26 2018/03/13 14:54:13 kamil Exp $ */
+/* $NetBSD: t_ptrace_wait.c,v 1.27 2018/04/09 15:45:16 kamil Exp $ */
/*-
* Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_ptrace_wait.c,v 1.26 2018/03/13 14:54:13 kamil Exp $");
+__RCSID("$NetBSD: t_ptrace_wait.c,v 1.27 2018/04/09 15:45:16 kamil Exp $");
#include <sys/param.h>
#include <sys/types.h>
@@ -134,7 +134,8 @@ ATF_TC(traceme2);
ATF_TC_HEAD(traceme2, tc)
{
atf_tc_set_md_var(tc, "descr",
- "Verify SIGSTOP followed by _exit(2) in a child");
+ "Verify that a signal emitted by a tracer to a child is caught by "
+ "a signal handler");
}
static int traceme2_caught = 0;