From 2d2eca8c9d942abab8bfb28cd4a068ef1b7e1189 Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Tue, 1 Dec 2020 19:30:50 +0100 Subject: sys/openbsd: neutralize sysctl kern.witness Do not fiddle with witness since we explicit values as part of the kernel configuration in dashboard/config/openbsd. --- sys/openbsd/init_test.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sys/openbsd/init_test.go') diff --git a/sys/openbsd/init_test.go b/sys/openbsd/init_test.go index 3a6c2c14c..2a9ed640c 100644 --- a/sys/openbsd/init_test.go +++ b/sys/openbsd/init_test.go @@ -93,6 +93,11 @@ func TestNeutralize(t *testing.T) { In: `sysctl$kern(&(0x7f0000000300)={0x1, 0x19}, 0x2, 0x0, 0x0, &(0x7f0000000300)="ff0380c5", 0x4)`, Out: `sysctl$kern(&(0x7f0000000300)={0x0}, 0x0, 0x0, 0x0, &(0x7f0000000300)="ff0380c5", 0x4)`, }, + { + // Test for sysctl kern.witness. + In: `sysctl$kern(&(0x7f0000000300)={0x1, 0x3c}, 0x2, 0x0, 0x0, &(0x7f0000000300)="ff0380c5", 0x4)`, + Out: `sysctl$kern(&(0x7f0000000300)={0x0}, 0x0, 0x0, 0x0, &(0x7f0000000300)="ff0380c5", 0x4)`, + }, { In: `clock_settime(0x0, &(0x7f0000cc0ff0)={0x0, 0x0})`, Out: `clock_settime(0xffffffffffffffff, &(0x7f0000cc0ff0))`, -- cgit mrf-deployment