From bd3f8b612ce3290d86a82170e69ac510818d52e3 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Thu, 26 Feb 2026 11:36:00 +0100 Subject: [PATCH] syscall_module: Use a kernel module that is present by default Since 6.13, the arp_tables module is not available in the default kernel config anymore, so let's use a different module, because the test doesn't need any specific one --- tests/syscall_module/test | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/syscall_module/test b/tests/syscall_module/test index a68ec4a..1c752db 100755 --- a/tests/syscall_module/test +++ b/tests/syscall_module/test @@ -51,7 +51,8 @@ system( ); # run the test -my $name = "arp_tables"; +# Can be any kernel module that isn't loaded by default +my $name = "sg"; $result = system("modprobe $name >/dev/null 2>&1"); ok( $result, 0 ); # Did the modprobe succeed?