63d2ada2f5
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>
20 lines
620 B
Plaintext
Executable File
20 lines
620 B
Plaintext
Executable File
echo -n "Running port test... "
|
|
./port
|
|
if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
|
|
|
|
echo -n "Running bridge test... "
|
|
./bridge
|
|
if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
|
|
|
|
echo -n "Running bridge STP test... "
|
|
./bridge-stp
|
|
if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
|
|
|
|
echo -n "Running bridge VLAN test... "
|
|
./bridge-vlan
|
|
if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
|
|
|
|
echo -n "Running bridge VLAN STP test... "
|
|
./bridge-vlan-stp
|
|
if [ $? -eq 0 ]; then echo "pass"; else echo "FAILED"; exit 1; fi
|