mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
rocker: add tests
Add some basic test for rocker to test L2/L3/L4 functionality. Requires an external test environment, simp, located here: https://github.com/scottfeldman/simp To run tests, simp environment must be installed and a suitable VM image built and installed with a Linux 3.18 (or greater) kernel with rocker driver support enabled. Signed-off-by: Scott Feldman <sfeldma@gmail.com> Message-id: 1426306173-24884-8-git-send-email-sfeldma@gmail.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
dc488f8880
commit
63d2ada2f5
8 changed files with 285 additions and 0 deletions
22
tests/rocker/port
Executable file
22
tests/rocker/port
Executable file
|
@ -0,0 +1,22 @@
|
|||
simp destroy ".*"
|
||||
simp create -o sw1:rocker:sw1 tut tut.dot
|
||||
simp start tut
|
||||
while ! simp ssh tut sw1 --cmd "ping -c 1 localhost >/dev/null"; do sleep 1; done
|
||||
while ! simp ssh tut h1 --cmd "ping -c 1 localhost >/dev/null"; do sleep 1; done
|
||||
while ! simp ssh tut h2 --cmd "ping -c 1 localhost >/dev/null"; do sleep 1; done
|
||||
|
||||
# bring up DUT ports
|
||||
|
||||
simp ssh tut sw1 --cmd "sudo ifconfig swp1 11.0.0.1/24"
|
||||
simp ssh tut sw1 --cmd "sudo ifconfig swp2 12.0.0.1/24"
|
||||
|
||||
# config IP on hosts
|
||||
|
||||
simp ssh tut h1 --cmd "sudo ifconfig swp1 11.0.0.2/24"
|
||||
simp ssh tut h2 --cmd "sudo ifconfig swp1 12.0.0.2/24"
|
||||
|
||||
# test...
|
||||
|
||||
simp ssh tut h1 --cmd "ping -c10 11.0.0.1 >/dev/null"
|
||||
if [ $? -eq 1 ]; then exit 1; fi
|
||||
simp ssh tut h2 --cmd "ping -c10 12.0.0.1 >/dev/null"
|
Loading…
Add table
Add a link
Reference in a new issue