diff options
| author | skrll <skrll@NetBSD.org> | 2022-06-09 17:39:21 +0000 |
|---|---|---|
| committer | skrll <skrll@NetBSD.org> | 2022-06-09 17:39:21 +0000 |
| commit | 8117d0cfa981d0cbcbdfeba0e3bf34fed4a46552 (patch) | |
| tree | af4397b20b9ac8d9132e9b2fb9a9631ec68520a1 /tests/lib | |
| parent | d3f19182ec223656b7904f17f2b6d25f2c8baa35 (diff) | |
There are two hard problems in computer science cache invalidation, naming
and off-by-one errors.
Fix a naming and off-by-one bug... Thanks to Tom Lane for spotting my typo.
Diffstat (limited to 'tests/lib')
| -rw-r--r-- | tests/lib/libc/sys/t_ptrace_core_wait.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/libc/sys/t_ptrace_core_wait.h b/tests/lib/libc/sys/t_ptrace_core_wait.h index d703608ac2c..5e5d0664807 100644 --- a/tests/lib/libc/sys/t_ptrace_core_wait.h +++ b/tests/lib/libc/sys/t_ptrace_core_wait.h @@ -1,4 +1,4 @@ -/* $NetBSD: t_ptrace_core_wait.h,v 1.6 2022/06/07 05:39:16 skrll Exp $ */ +/* $NetBSD: t_ptrace_core_wait.h,v 1.7 2022/06/09 17:39:21 skrll Exp $ */ /*- * Copyright (c) 2016, 2017, 2018, 2019, 2020 The NetBSD Foundation, Inc. @@ -208,7 +208,7 @@ ATF_TC_BODY(core_dump_procinfo, tc) DPRINTF("Before resuming the child process where it left off and " "without signal to be sent\n"); -#if defined(__aarch64__) || defined(__arm__) || defined(__hppa___) || \ +#if defined(__aarch64__) || defined(__arm__) || defined(__hppa__) || \ defined(__powerpc__) || defined(__sh3__) || defined(sparc) /* * For these archs, program counter is not automatically incremented |
