diff options
author | ngie <ngie@FreeBSD.org> | 2017-01-13 08:38:29 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-01-13 08:38:29 +0000 |
commit | 81fa1c4ef0380b4eca115f4a6c5a81e58c0c4eb7 (patch) | |
tree | 3d256025af64f595d7a228f9204c40f4b7dddcb5 /contrib/netbsd-tests/lib | |
parent | eda79e75aa5d2bea6c1db8514dbcd17d8848636f (diff) | |
download | FreeBSD-src-81fa1c4ef0380b4eca115f4a6c5a81e58c0c4eb7.zip FreeBSD-src-81fa1c4ef0380b4eca115f4a6c5a81e58c0c4eb7.tar.gz |
MFC r311870:
Merge the grammar fix for lib/libc/gen/raise_test:raise_stress
Diffstat (limited to 'contrib/netbsd-tests/lib')
-rw-r--r-- | contrib/netbsd-tests/lib/libc/gen/t_raise.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/netbsd-tests/lib/libc/gen/t_raise.c b/contrib/netbsd-tests/lib/libc/gen/t_raise.c index d6f888f..91a8c37 100644 --- a/contrib/netbsd-tests/lib/libc/gen/t_raise.c +++ b/contrib/netbsd-tests/lib/libc/gen/t_raise.c @@ -1,4 +1,4 @@ -/* $NetBSD: t_raise.c,v 1.5 2011/05/10 12:43:42 jruoho Exp $ */ +/* $NetBSD: t_raise.c,v 1.6 2016/11/03 22:08:31 kamil Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. @@ -29,7 +29,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ #include <sys/cdefs.h> -__RCSID("$NetBSD: t_raise.c,v 1.5 2011/05/10 12:43:42 jruoho Exp $"); +__RCSID("$NetBSD: t_raise.c,v 1.6 2016/11/03 22:08:31 kamil Exp $"); #include <atf-c.h> @@ -180,7 +180,7 @@ ATF_TC_BODY(raise_stress, tc) (void)raise(SIGUSR1); if (count != maxiter) - atf_tc_fail("not all signals were catched"); + atf_tc_fail("not all signals were caught"); } ATF_TP_ADD_TCS(tp) |