summaryrefslogtreecommitdiffstats
path: root/tests/data_plane/vpp_lite_topo/config.sh
diff options
context:
space:
mode:
authorFilip Tehlar <ftehlar@cisco.com>2016-10-06 13:20:58 +0200
committerFilip Tehlar <ftehlar@cisco.com>2016-10-06 14:03:30 +0200
commitabc6884972bc0792f4817a3822f13128d716c889 (patch)
tree343e9a7170c424dd8774d5f57c9123096a7da91f /tests/data_plane/vpp_lite_topo/config.sh
parent18b298a6096f95362c4f38270166f335790f4d0b (diff)
Fix some test issues
* add sleep to v6 eid virt test * fix failover test * reuse topology setup at failover test Change-Id: I7f1234696a9cec7931984c4dcee79c2cf90287d1 Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'tests/data_plane/vpp_lite_topo/config.sh')
-rw-r--r--tests/data_plane/vpp_lite_topo/config.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/data_plane/vpp_lite_topo/config.sh b/tests/data_plane/vpp_lite_topo/config.sh
index a546c52..57b616a 100644
--- a/tests/data_plane/vpp_lite_topo/config.sh
+++ b/tests/data_plane/vpp_lite_topo/config.sh
@@ -138,3 +138,10 @@ function assert_rc_ok
exit $test_result
fi
}
+
+function start_map_resolver
+{
+ echo "starting dummy map resolver on interface $1"
+ python scripts/dummy_mr.py "$1" 4342 &
+ mr_id=$!
+}