Module Name: src
Committed By: martin
Date: Fri Aug 28 19:29:58 UTC 2020
Modified Files:
src/tests/rump/rumpkern: t_kern.c
Log Message:
lockme_DOUBLEINIT:
The failure message differs slightly when using LOCKDEBUG, modify the
expected pattern to cover both variants.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/rump/rumpkern/t_kern.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/rump/rumpkern/t_kern.c
diff -u src/tests/rump/rumpkern/t_kern.c:1.5 src/tests/rump/rumpkern/t_kern.c:1.6
--- src/tests/rump/rumpkern/t_kern.c:1.5 Wed May 3 12:09:41 2017
+++ src/tests/rump/rumpkern/t_kern.c Fri Aug 28 19:29:58 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: t_kern.c,v 1.5 2017/05/03 12:09:41 pgoyette Exp $ */
+/* $NetBSD: t_kern.c,v 1.6 2020/08/28 19:29:58 martin Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -112,7 +112,7 @@ LOCKFUN(DESTROYHELD, "destroy lock while
LOCKFUN(DOUBLEFREE, "free lock twice", 0,
"panic: mutex_destroy,.*: uninitialized lock");
LOCKFUN(DOUBLEINIT, "init lock twice", 1,
- "mutex error: mutex_init,.*: already initialized");
+ "mutex error: .*mutex_init,.*: already initialized");
LOCKFUN(MEMFREE, "free memory active lock is in", 1,
"mutex error: kmem_intr_free,.*: allocation contains active lock");
LOCKFUN(MTX, "locking-against-self mutex", 0,