Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F162637963
D57288.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
829 B
Referenced Files
None
Subscribers
None
D57288.diff
View Options
diff --git a/tests/sys/kern/ptrace_test.c b/tests/sys/kern/ptrace_test.c
--- a/tests/sys/kern/ptrace_test.c
+++ b/tests/sys/kern/ptrace_test.c
@@ -3614,6 +3614,10 @@
ATF_REQUIRE(pl.pl_flags & PL_FLAG_SI);
REQUIRE_EQ(pl.pl_siginfo.si_signo, SIGABRT);
+#if defined(__riscv)
+ atf_tc_expect_fail("PT_STEP not implemented on riscv, see sys/riscv/riscv/ptrace_machdep.c");
+#endif
+
/* Step the child process inserting SIGUSR1. */
REQUIRE_EQ(ptrace(PT_STEP, fpid, (caddr_t)1, SIGUSR1), 0);
@@ -3731,6 +3735,10 @@
ATF_REQUIRE(WIFSTOPPED(status));
REQUIRE_EQ(WSTOPSIG(status), SIGSTOP);
+#if defined(__riscv)
+ atf_tc_expect_fail("PT_STEP not implemented on riscv, see sys/riscv/riscv/ptrace_machdep.c");
+#endif
+
/* Step the child ignoring the SIGSTOP. */
REQUIRE_EQ(ptrace(PT_STEP, fpid, (caddr_t)1, 0), 0);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jul 16, 7:24 AM (17 h, 19 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33595352
Default Alt Text
D57288.diff (829 B)
Attached To
Mode
D57288: ptrace_test: expect PT_STEP tests to fail on riscv
Attached
Detach File
Event Timeline
Log In to Comment