From 0c77a25a566efd65380fd7ec92fea3182267bced Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Tue, 15 Aug 2017 14:54:18 +0200 Subject: tests: don't fail on modprobe since the driver might be built-in Any of these nf drivers could be built-ins instead of modules; don't cause the testsuite to fail on modprobe, instead let it proceed and succeed/fail later based on actual test results. Ideally we would check up front if the driver is loaded rather than trying to modprobe and ignoring failures, but there doesn't seem to be a reliable place to check this in the kernel filesystem. Signed-off-by: Steve Langasek Signed-off-by: Arturo Borrero Gonzalez Signed-off-by: Pablo Neira Ayuso --- tests/conntrack/run-test.sh | 14 ++++++++------ tests/nfct/run-test.sh | 14 ++++++++------ 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/tests/conntrack/run-test.sh b/tests/conntrack/run-test.sh index 1403e2c..1c1f8e4 100644 --- a/tests/conntrack/run-test.sh +++ b/tests/conntrack/run-test.sh @@ -10,10 +10,12 @@ gcc test-conntrack.c -o test # # XXX: module auto-load not support by nfnetlink_cttimeout yet :-( # -modprobe nf_conntrack_ipv4 -modprobe nf_conntrack_ipv6 -modprobe nf_conntrack_proto_udplite -modprobe nf_conntrack_proto_sctp -modprobe nf_conntrack_proto_dccp -modprobe nf_conntrack_proto_gre +# any or all of these might be built-ins rather than modules, so don't error +# out on failure from modprobe +modprobe nf_conntrack_ipv4 || true +modprobe nf_conntrack_ipv6 || true +modprobe nf_conntrack_proto_udplite || true +modprobe nf_conntrack_proto_sctp || true +modprobe nf_conntrack_proto_dccp || true +modprobe nf_conntrack_proto_gre || true ./test testcases diff --git a/tests/nfct/run-test.sh b/tests/nfct/run-test.sh index 851ee75..f5f220b 100644 --- a/tests/nfct/run-test.sh +++ b/tests/nfct/run-test.sh @@ -11,10 +11,12 @@ gcc test.c -o test # # XXX: module auto-load not support by nfnetlink_cttimeout yet :-( # -modprobe nf_conntrack_ipv4 -modprobe nf_conntrack_ipv6 -modprobe nf_conntrack_proto_udplite -modprobe nf_conntrack_proto_sctp -modprobe nf_conntrack_proto_dccp -modprobe nf_conntrack_proto_gre +# any or all of these might be built-ins rather than modules, so don't error +# out on failure from modprobe +modprobe nf_conntrack_ipv4 || true +modprobe nf_conntrack_ipv6 || true +modprobe nf_conntrack_proto_udplite || true +modprobe nf_conntrack_proto_sctp || true +modprobe nf_conntrack_proto_dccp || true +modprobe nf_conntrack_proto_gre || true ./test timeout -- cgit v1.2.3