Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests s/estabilishing/establishing/ in copy pasted comment.



details:   https://anonhg.NetBSD.org/src/rev/7c5206e5d9a9
branches:  trunk
changeset: 366388:7c5206e5d9a9
user:      andvar <andvar%NetBSD.org@localhost>
date:      Tue May 24 20:08:38 2022 +0000

description:
s/estabilishing/establishing/ in copy pasted comment.

diffstat:

 tests/kernel/t_zombie.c            |  6 +++---
 tests/lib/libc/sys/t_fork.c        |  6 +++---
 tests/lib/libc/sys/t_ptrace.c      |  6 +++---
 tests/lib/libc/sys/t_ptrace_wait.h |  4 ++--
 4 files changed, 11 insertions(+), 11 deletions(-)

diffs (99 lines):

diff -r 97b9d0f22076 -r 7c5206e5d9a9 tests/kernel/t_zombie.c
--- a/tests/kernel/t_zombie.c   Tue May 24 20:00:49 2022 +0000
+++ b/tests/kernel/t_zombie.c   Tue May 24 20:08:38 2022 +0000
@@ -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 @@
  * 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.
  */
diff -r 97b9d0f22076 -r 7c5206e5d9a9 tests/lib/libc/sys/t_fork.c
--- a/tests/lib/libc/sys/t_fork.c       Tue May 24 20:00:49 2022 +0000
+++ b/tests/lib/libc/sys/t_fork.c       Tue May 24 20:08:38 2022 +0000
@@ -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 @@
  * 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.
  */
diff -r 97b9d0f22076 -r 7c5206e5d9a9 tests/lib/libc/sys/t_ptrace.c
--- a/tests/lib/libc/sys/t_ptrace.c     Tue May 24 20:00:49 2022 +0000
+++ b/tests/lib/libc/sys/t_ptrace.c     Tue May 24 20:08:38 2022 +0000
@@ -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 @@
  * 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.
  */
diff -r 97b9d0f22076 -r 7c5206e5d9a9 tests/lib/libc/sys/t_ptrace_wait.h
--- a/tests/lib/libc/sys/t_ptrace_wait.h        Tue May 24 20:00:49 2022 +0000
+++ b/tests/lib/libc/sys/t_ptrace_wait.h        Tue May 24 20:08:38 2022 +0000
@@ -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 @@
  * 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.
  */



Home | Main Index | Thread Index | Old Index