summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Rose <gvrose8192@gmail.com>2022-07-14 14:23:28 -0700
committerIlya Maximets <i.maximets@ovn.org>2022-07-15 13:45:55 +0200
commit86642de3ad8d42ab2b5dbace241d8dc398bd1195 (patch)
treebb22b0b9c7058d124c12ee058bcea598c479bbfa
parentc94ae8a75408bf12dba4cac95a5ed93fdbee09f0 (diff)
downloadopenvswitch-86642de3ad8d42ab2b5dbace241d8dc398bd1195.tar.gz
tests: Remove support for check-kmod test.
The OVS kernel module is no longer supported as of OVS 2.18 Reviewed-by: David Marchand <david.marchand@redhat.com> Signed-off-by: Greg Rose <gvrose8192@gmail.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
-rw-r--r--Documentation/topics/testing.rst7
-rw-r--r--tests/automake.mk6
2 files changed, 0 insertions, 13 deletions
diff --git a/Documentation/topics/testing.rst b/Documentation/topics/testing.rst
index a6c747b18..871ce5637 100644
--- a/Documentation/topics/testing.rst
+++ b/Documentation/topics/testing.rst
@@ -436,13 +436,6 @@ your system, run::
$ make check-kernel
-To install the kernel module from the current build directory and run the
-testsuite against that kernel module::
-
- $ make check-kmod
-
-The results of the testsuite are in ``tests/system-kmod-testsuite.dir``.
-
All the features documented under `Unit Tests`_ are available for the kernel
datapath testsuite.
diff --git a/tests/automake.mk b/tests/automake.mk
index b29cb783e..3496f9002 100644
--- a/tests/automake.mk
+++ b/tests/automake.mk
@@ -343,12 +343,6 @@ check-kernel: all
set $(SHELL) '$(SYSTEM_KMOD_TESTSUITE)' -C tests AUTOTEST_PATH='$(AUTOTEST_PATH)'; \
"$$@" $(TESTSUITEFLAGS) -j1 || (test X'$(RECHECK)' = Xyes && "$$@" --recheck)
-# Testing the out of tree Kernel module
-check-kmod: all
- $(MAKE) modules_install
- modprobe -r -a vport-geneve vport-gre vport-lisp vport-stt vport-vxlan openvswitch
- $(MAKE) check-kernel
-
check-system-userspace: all
set $(SHELL) '$(SYSTEM_USERSPACE_TESTSUITE)' -C tests AUTOTEST_PATH='$(AUTOTEST_PATH)'; \
"$$@" $(TESTSUITEFLAGS) -j1 || (test X'$(RECHECK)' = Xyes && "$$@" --recheck)