shithub: trueawk

Download patch

ref: 850a7c1f12038114231bdeb2710d5383994b04e6
parent: acde9cddfda6e49d5093c6deee0076c6415d6ded
parent: 1ad43a57149dcb71f3cfde6f74c776a454fcbeae
author: ozan yigit <ozan.yigit@gmail.com>
date: Sun Jun 23 17:15:09 EDT 2024

fix filesystem-status-test for openbsd

--- a/bugs-fixed/system-status.awk
+++ b/bugs-fixed/system-status.awk
@@ -9,7 +9,7 @@
 	status = system("exit 42")
 	print "normal status", status
 
-	status = system("kill -HUP $$")
+	status = system("kill -KILL $$")
 	print "death by signal status", status
 
 	status = system("kill -ABRT $$")
--- a/bugs-fixed/system-status.ok
+++ b/bugs-fixed/system-status.ok
@@ -1,3 +1,3 @@
 normal status 42
-death by signal status 257
+death by signal status 265
 death by signal with core dump status 518
--- a/bugs-fixed/system-status.ok2
+++ b/bugs-fixed/system-status.ok2
@@ -1,3 +1,3 @@
 normal status 42
-death by signal status 257
+death by signal status 265
 death by signal with core dump status 262
--