@@ -672,12 +672,14 @@ run_test() {
exitcode=0
desc=0
all_skipped=true
+LOAD_MOD=yes
while getopts :pvt o
do
case $o in
p) PAUSE_ON_FAIL=yes;;
v) VERBOSE=1;;
+ n) LOAD_MOD=no;;
t) if which tcpdump > /dev/null 2>&1; then
TRACING=1
else
@@ -697,6 +699,10 @@ for arg do
command -v > /dev/null "test_${arg}" || { echo "=== Test ${arg} not found"; usage; }
done
+if [ "$LOAD_MOD" == "yes" ]; then
+ modprobe openvswitch
+fi
+
name=""
desc=""
for t in ${tests}; do
@@ -716,4 +722,9 @@ for t in ${tests}; do
desc=""
done
+
+if [ "$LOAD_MOD" == "yes" ]; then
+ modprobe -r openvswitch
+fi
+
exit ${exitcode}
The openvswitch tests do not attempt to insert the openvswitch module automatically. Now the test will auto load the module and try to unload it at the end. The test harness includes the option to not load the module, which is helpful when developing changes and loading the module from a different location. Signed-off-by: Aaron Conole <aconole@redhat.com> --- .../testing/selftests/net/openvswitch/openvswitch.sh | 11 +++++++++++ 1 file changed, 11 insertions(+)