Module Name: src Committed By: andvar Date: Tue May 24 20:08:38 UTC 2022
Modified Files: src/tests/kernel: t_zombie.c src/tests/lib/libc/sys: t_fork.c t_ptrace.c t_ptrace_wait.h Log Message: s/estabilishing/establishing/ in copy pasted comment. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/kernel/t_zombie.c cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libc/sys/t_fork.c \ src/tests/lib/libc/sys/t_ptrace.c cvs rdiff -u -r1.33 -r1.34 src/tests/lib/libc/sys/t_ptrace_wait.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/kernel/t_zombie.c diff -u src/tests/kernel/t_zombie.c:1.2 src/tests/kernel/t_zombie.c:1.3 --- src/tests/kernel/t_zombie.c:1.2 Fri May 18 00:25:30 2018 +++ src/tests/kernel/t_zombie.c Tue May 24 20:08:38 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: t_zombie.c,v 1.2 2018/05/18 00:25:30 kamil Exp $ */ +/* $NetBSD: t_zombie.c,v 1.3 2022/05/24 20:08:38 andvar Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. @@ -29,7 +29,7 @@ #include <sys/cdefs.h> __COPYRIGHT("@(#) Copyright (c) 2018\ The NetBSD Foundation, inc. All rights reserved."); -__RCSID("$NetBSD: t_zombie.c,v 1.2 2018/05/18 00:25:30 kamil Exp $"); +__RCSID("$NetBSD: t_zombie.c,v 1.3 2022/05/24 20:08:38 andvar Exp $"); #include <sys/types.h> #include <sys/sysctl.h> @@ -57,7 +57,7 @@ do { \ * A child process cannot call atf functions and expect them to magically * work like in the parent. * The printf(3) messaging from a child will not work out of the box as well - * without estabilishing a communication protocol with its parent. To not + * without establishing a communication protocol with its parent. To not * overcomplicate the tests - do not log from a child and use err(3)/errx(3) * wrapped with ASSERT_EQ()/ASSERT_NEQ() as that is guaranteed to work. */ Index: src/tests/lib/libc/sys/t_fork.c diff -u src/tests/lib/libc/sys/t_fork.c:1.4 src/tests/lib/libc/sys/t_fork.c:1.5 --- src/tests/lib/libc/sys/t_fork.c:1.4 Sat Apr 6 15:41:54 2019 +++ src/tests/lib/libc/sys/t_fork.c Tue May 24 20:08:38 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: t_fork.c,v 1.4 2019/04/06 15:41:54 kamil Exp $ */ +/* $NetBSD: t_fork.c,v 1.5 2022/05/24 20:08:38 andvar Exp $ */ /*- * Copyright (c) 2018, 2019 The NetBSD Foundation, Inc. @@ -29,7 +29,7 @@ #include <sys/cdefs.h> __COPYRIGHT("@(#) Copyright (c) 2018, 2019\ The NetBSD Foundation, inc. All rights reserved."); -__RCSID("$NetBSD: t_fork.c,v 1.4 2019/04/06 15:41:54 kamil Exp $"); +__RCSID("$NetBSD: t_fork.c,v 1.5 2022/05/24 20:08:38 andvar Exp $"); #include <sys/param.h> #include <sys/types.h> @@ -55,7 +55,7 @@ __RCSID("$NetBSD: t_fork.c,v 1.4 2019/04 * A child process cannot call atf functions and expect them to magically * work like in the parent. * The printf(3) messaging from a child will not work out of the box as well - * without estabilishing a communication protocol with its parent. To not + * without establishing a communication protocol with its parent. To not * overcomplicate the tests - do not log from a child and use err(3)/errx(3) * wrapped with ASSERT_EQ()/ASSERT_NEQ() as that is guaranteed to work. */ Index: src/tests/lib/libc/sys/t_ptrace.c diff -u src/tests/lib/libc/sys/t_ptrace.c:1.4 src/tests/lib/libc/sys/t_ptrace.c:1.5 --- src/tests/lib/libc/sys/t_ptrace.c:1.4 Mon May 14 12:44:40 2018 +++ src/tests/lib/libc/sys/t_ptrace.c Tue May 24 20:08:38 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: t_ptrace.c,v 1.4 2018/05/14 12:44:40 kamil Exp $ */ +/* $NetBSD: t_ptrace.c,v 1.5 2022/05/24 20:08:38 andvar Exp $ */ /*- * Copyright (c) 2016 The NetBSD Foundation, Inc. @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: t_ptrace.c,v 1.4 2018/05/14 12:44:40 kamil Exp $"); +__RCSID("$NetBSD: t_ptrace.c,v 1.5 2022/05/24 20:08:38 andvar Exp $"); #include <sys/param.h> #include <sys/types.h> @@ -46,7 +46,7 @@ __RCSID("$NetBSD: t_ptrace.c,v 1.4 2018/ * A child process cannot call atf functions and expect them to magically * work like in the parent. * The printf(3) messaging from a child will not work out of the box as well - * without estabilishing a communication protocol with its parent. To not + * without establishing a communication protocol with its parent. To not * overcomplicate the tests - do not log from a child and use err(3)/errx(3) * wrapped with FORKEE_ASSERT()/FORKEE_ASSERTX() as that is guaranteed to work. */ Index: src/tests/lib/libc/sys/t_ptrace_wait.h diff -u src/tests/lib/libc/sys/t_ptrace_wait.h:1.33 src/tests/lib/libc/sys/t_ptrace_wait.h:1.34 --- src/tests/lib/libc/sys/t_ptrace_wait.h:1.33 Mon May 24 10:44:06 2021 +++ src/tests/lib/libc/sys/t_ptrace_wait.h Tue May 24 20:08:38 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: t_ptrace_wait.h,v 1.33 2021/05/24 10:44:06 gson Exp $ */ +/* $NetBSD: t_ptrace_wait.h,v 1.34 2022/05/24 20:08:38 andvar Exp $ */ /*- * Copyright (c) 2016, 2017, 2018, 2019 The NetBSD Foundation, Inc. @@ -143,7 +143,7 @@ do { \ * A child process cannot call atf functions and expect them to magically * work like in the parent. * The printf(3) messaging from a child will not work out of the box as well - * without estabilishing a communication protocol with its parent. To not + * without establishing a communication protocol with its parent. To not * overcomplicate the tests - do not log from a child and use err(3)/errx(3) * wrapped with FORKEE_ASSERT()/FORKEE_ASSERTX() as that is guaranteed to work. */