diff mbox series

[ovs-dev,V4,3/8] tests: Remove support for check-kmod test

Message ID 20220712175635.29458-4-gvrose8192@gmail.com
State Changes Requested
Headers show
Series Remove OVS kernel driver | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/intel-ovs-compilation success test: success

Commit Message

Gregory Rose July 12, 2022, 5:56 p.m. UTC
The OVS kernel module is no longer supported as of OVS 2.18

Signed-off-by: Greg Rose <gvrose8192@gmail.com>
---
 Documentation/topics/testing.rst | 7 -------
 tests/automake.mk                | 6 ------
 2 files changed, 13 deletions(-)

Comments

David Marchand July 12, 2022, 8:27 p.m. UTC | #1
On Tue, Jul 12, 2022 at 8:01 PM Greg Rose <gvrose8192@gmail.com> wrote:
>
> The OVS kernel module is no longer supported as of OVS 2.18
>
> Signed-off-by: Greg Rose <gvrose8192@gmail.com>

With a '.' at the end of the title:
Reviewed-by: David Marchand <david.marchand@redhat.com>
Gregory Rose July 12, 2022, 9:42 p.m. UTC | #2
On 7/12/2022 1:27 PM, David Marchand wrote:
> On Tue, Jul 12, 2022 at 8:01 PM Greg Rose <gvrose8192@gmail.com> wrote:
>>
>> The OVS kernel module is no longer supported as of OVS 2.18
>>
>> Signed-off-by: Greg Rose <gvrose8192@gmail.com>
> 
> With a '.' at the end of the title:
> Reviewed-by: David Marchand <david.marchand@redhat.com>
> 
> 

Will do.

- Greg
diff mbox series

Patch

diff --git a/Documentation/topics/testing.rst b/Documentation/topics/testing.rst
index c15d5b38f..d4df656d0 100644
--- a/Documentation/topics/testing.rst
+++ b/Documentation/topics/testing.rst
@@ -428,13 +428,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)