Source-Changes-HG archive

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

[src/trunk]: src/tests Reference PRs consistently.



details:   https://anonhg.NetBSD.org/src/rev/44d7e602829b
branches:  trunk
changeset: 935154:44d7e602829b
user:      jruoho <jruoho%NetBSD.org@localhost>
date:      Fri Jun 26 07:50:11 2020 +0000

description:
Reference PRs consistently.

diffstat:

 tests/dev/audio/audiotest.c   |  6 +++---
 tests/fs/nullfs/t_basic.c     |  6 +++---
 tests/fs/tmpfs/t_renamerace.c |  4 ++--
 tests/kernel/t_extattrctl.c   |  2 +-
 tests/lib/libc/sys/t_mmap.c   |  7 ++++---
 tests/lib/libc/sys/t_pipe.c   |  6 +++---
 tests/usr.bin/awk/t_awk.sh    |  4 ++--
 7 files changed, 18 insertions(+), 17 deletions(-)

diffs (149 lines):

diff -r bb49442a3ada -r 44d7e602829b tests/dev/audio/audiotest.c
--- a/tests/dev/audio/audiotest.c       Fri Jun 26 06:08:37 2020 +0000
+++ b/tests/dev/audio/audiotest.c       Fri Jun 26 07:50:11 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audiotest.c,v 1.11 2020/05/01 05:45:57 isaki Exp $     */
+/*     $NetBSD: audiotest.c,v 1.12 2020/06/26 07:50:12 jruoho Exp $    */
 
 /*
  * Copyright (C) 2019 Tetsuya Isaki. All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: audiotest.c,v 1.11 2020/05/01 05:45:57 isaki Exp $");
+__RCSID("$NetBSD: audiotest.c,v 1.12 2020/06/26 07:50:12 jruoho Exp $");
 
 #include <errno.h>
 #include <fcntl.h>
@@ -720,7 +720,7 @@
 
 /*
  * XXX
- * Closing pad descriptor before audio descriptor causes panic (kern/54427).
+ * Closing pad descriptor before audio descriptor causes panic (PR kern/54427).
  * To avoid this, close non-pad descriptor first using atexit(3) for now.
  * This is just a workaround and this function should be removed.
  */
diff -r bb49442a3ada -r 44d7e602829b tests/fs/nullfs/t_basic.c
--- a/tests/fs/nullfs/t_basic.c Fri Jun 26 06:08:37 2020 +0000
+++ b/tests/fs/nullfs/t_basic.c Fri Jun 26 07:50:11 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_basic.c,v 1.4 2017/01/13 21:30:40 christos Exp $     */
+/*     $NetBSD: t_basic.c,v 1.5 2020/06/26 07:50:12 jruoho Exp $       */
 
 #include <sys/types.h>
 #include <sys/mount.h>
@@ -133,11 +133,11 @@
 
        /* this is expected to fail until the PR is fixed */
        atf_tc_set_md_var(tc, "descr", "\"recursive\" mounts deadlock"
-           " (kern/43439)");
+           " (PR kern/43439)");
 }
 
 /*
- * Mapping to identifiers in kern/43439:
+ * Mapping to identifiers in PR kern/43439:
  *  /td                = /home/current/pkgsrc
  *  /td/dist   = /home/current/pkgsrc/distiles
  *  /mp                = /usr/pkgsrc
diff -r bb49442a3ada -r 44d7e602829b tests/fs/tmpfs/t_renamerace.c
--- a/tests/fs/tmpfs/t_renamerace.c     Fri Jun 26 06:08:37 2020 +0000
+++ b/tests/fs/tmpfs/t_renamerace.c     Fri Jun 26 07:50:11 2020 +0000
@@ -1,8 +1,8 @@
-/*     $NetBSD: t_renamerace.c,v 1.14 2017/01/13 21:30:40 christos Exp $       */
+/*     $NetBSD: t_renamerace.c,v 1.15 2020/06/26 07:50:12 jruoho Exp $ */
 
 /*
  * Modified for rump and atf from a program supplied
- * by Nicolas Joly in kern/40948
+ * by Nicolas Joly in PR kern/40948
  */
 
 #include <sys/types.h>
diff -r bb49442a3ada -r 44d7e602829b tests/kernel/t_extattrctl.c
--- a/tests/kernel/t_extattrctl.c       Fri Jun 26 06:08:37 2020 +0000
+++ b/tests/kernel/t_extattrctl.c       Fri Jun 26 07:50:11 2020 +0000
@@ -9,7 +9,7 @@
 ATF_TC_HEAD(extattrctl_namei, tc)
 {
 
-       atf_tc_set_md_var(tc, "descr", "extattrctl namei safety (kern/43328)");
+       atf_tc_set_md_var(tc, "descr", "extattrctl namei safety (PR kern/43328)");
 }
 
 ATF_TC_BODY(extattrctl_namei, tc)
diff -r bb49442a3ada -r 44d7e602829b tests/lib/libc/sys/t_mmap.c
--- a/tests/lib/libc/sys/t_mmap.c       Fri Jun 26 06:08:37 2020 +0000
+++ b/tests/lib/libc/sys/t_mmap.c       Fri Jun 26 07:50:11 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_mmap.c,v 1.13 2017/05/23 13:04:29 christos Exp $ */
+/* $NetBSD: t_mmap.c,v 1.14 2020/06/26 07:50:11 jruoho Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -55,7 +55,7 @@
  * SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_mmap.c,v 1.13 2017/05/23 13:04:29 christos Exp $");
+__RCSID("$NetBSD: t_mmap.c,v 1.14 2020/06/26 07:50:11 jruoho Exp $");
 
 #include <sys/param.h>
 #include <sys/disklabel.h>
@@ -171,7 +171,8 @@
        size_t len;
        int fd = -1;
 
-       atf_tc_skip("The test case causes a panic (PR kern/38889, kern/46592)");
+       atf_tc_skip("The test case causes a panic " \
+           "(PR kern/38889, PR kern/46592)");
 
        ATF_REQUIRE(sysctl(mib, miblen, NULL, &len, NULL, 0) == 0);
        drives = malloc(len);
diff -r bb49442a3ada -r 44d7e602829b tests/lib/libc/sys/t_pipe.c
--- a/tests/lib/libc/sys/t_pipe.c       Fri Jun 26 06:08:37 2020 +0000
+++ b/tests/lib/libc/sys/t_pipe.c       Fri Jun 26 07:50:11 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_pipe.c,v 1.6 2019/12/27 09:25:58 msaitoh Exp $ */
+/* $NetBSD: t_pipe.c,v 1.7 2020/06/26 07:50:11 jruoho Exp $ */
 
 /*-
  * Copyright (c) 2001, 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
 #include <sys/cdefs.h>
 __COPYRIGHT("@(#) Copyright (c) 2008\
  The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: t_pipe.c,v 1.6 2019/12/27 09:25:58 msaitoh Exp $");
+__RCSID("$NetBSD: t_pipe.c,v 1.7 2020/06/26 07:50:11 jruoho Exp $");
 
 #include <sys/types.h>
 #include <sys/wait.h>
@@ -70,7 +70,7 @@
 {
        atf_tc_set_md_var(tc, "descr", "Checks that writing to pipe "
            "works correctly after being interrupted and restarted "
-           "(kern/14087)");
+           "(PR kern/14087)");
 }
 
 ATF_TC_BODY(pipe_restart, tc)
diff -r bb49442a3ada -r 44d7e602829b tests/usr.bin/awk/t_awk.sh
--- a/tests/usr.bin/awk/t_awk.sh        Fri Jun 26 06:08:37 2020 +0000
+++ b/tests/usr.bin/awk/t_awk.sh        Fri Jun 26 07:50:11 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: t_awk.sh,v 1.6 2019/01/19 01:02:12 christos Exp $
+# $NetBSD: t_awk.sh,v 1.7 2020/06/26 07:50:11 jruoho Exp $
 #
 # Copyright (c) 2012 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -93,7 +93,7 @@
 
 period_head() {
        atf_set "descr" "Checks that the period character is recognised" \
-                       "in awk program regardless of locale (bin/42320)"
+                       "in awk program regardless of locale (PR bin/42320)"
 }
 
 period_body() {



Home | Main Index | Thread Index | Old Index