@@ -58,3 +58,5 @@ dctcp_ipv6_01 dctcp01.sh -6
geneve01 geneve01.sh
geneve01_ipv6 geneve01.sh -6
+
+sit01 sit01.sh
new file mode 100755
@@ -0,0 +1,23 @@
+#!/bin/sh
+# SPDX-License-Identifier: GPL-2.0-or-later
+# Copyright (c) 2018 Oracle and/or its affiliates.
+
+TST_NEEDS_TMPDIR=1
+TST_TESTFUNC=virt_netperf_msg_sizes
+TST_SETUP=do_setup
+TST_CLEANUP=virt_cleanup
+virt_type="sit"
+. virt_lib.sh
+
+do_setup()
+{
+ [ -n "$TST_IPV6" ] && tst_res TBROK "invalid option '-6' for sit tunnel"
+
+ virt_lib_setup
+
+ tst_res TINFO "test $virt_type"
+ virt_setup "local $(tst_ipaddr) remote $(tst_ipaddr rhost)" \
+ "local $(tst_ipaddr rhost) remote $(tst_ipaddr)"
+}
+
+tst_run
Signed-off-by: Alexey Kodanev <alexey.kodanev@oracle.com> --- runtest/net.features | 2 ++ testcases/network/virt/sit01.sh | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 0 deletions(-) create mode 100755 testcases/network/virt/sit01.sh