]> git.ipfire.org Git - thirdparty/qemu.git/commit
tests/test-filter-mirror:add filter-mirror unit test
authorZhang Chen <zhangchen.fnst@cn.fujitsu.com>
Tue, 15 Mar 2016 07:41:34 +0000 (15:41 +0800)
committerJason Wang <jasowang@redhat.com>
Wed, 30 Mar 2016 00:57:16 +0000 (08:57 +0800)
commit06809ecf7312c8653964de661f932a0ed7cd0076
treefd7d2ad85902d2051bbc9e46c659b5c2d4897f18
parentf6d3afb51f47af7bbc600c48cd54003a0b6d0f5e
tests/test-filter-mirror:add filter-mirror unit test

In this unit test we will test the mirror function.

start qemu with:
      -netdev socket,id=qtest-bn0,fd=sockfd
      -device e1000,netdev=qtest-bn0,id=qtest-e0
      -chardev socket,id=mirror0,path=/tmp/filter-mirror-test.sock,server,nowait
      -object filter-mirror,id=qtest-f0,netdev=qtest-bn0,queue=tx,outdev=mirror0

We inject packet to netdev socket id = qtest-bn0,
filter-mirror will copy and mirror the packet to mirror0.
we read packet from mirror0 and then compare to what we injected.

Signed-off-by: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
tests/.gitignore
tests/Makefile
tests/test-filter-mirror.c [new file with mode: 0644]