mirror of
https://github.com/openvswitch/ovs
synced 2025-10-17 14:28:02 +00:00
Conflicts: COPYING datapath/datapath.h lib/automake.mk lib/dpif-provider.h lib/dpif.c lib/hmap.h lib/netdev-provider.h lib/netdev.c lib/stream-ssl.h ofproto/executer.c ofproto/ofproto.c ofproto/ofproto.h tests/automake.mk utilities/ovs-ofctl.c utilities/ovs-vsctl.in vswitchd/ovs-vswitchd.conf.5.in xenserver/etc_init.d_vswitch xenserver/etc_xensource_scripts_vif xenserver/opt_xensource_libexec_interface-reconfigure
41 lines
891 B
Plaintext
41 lines
891 B
Plaintext
AT_BANNER([library unit tests])
|
|
|
|
AT_SETUP([test flow extractor])
|
|
AT_CHECK([$PERL `which flowgen.pl` >/dev/null 3>flows 4>pcap])
|
|
AT_CHECK([test-flows <flows 3<pcap], [0], [checked 247 packets, 0 errors
|
|
])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([test TCP/IP checksumming])
|
|
AT_CHECK([test-csum], [0], [ignore])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([test flow classifier])
|
|
AT_KEYWORDS([slow])
|
|
AT_CHECK([test-classifier], [0], [ignore])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([test hash functions])
|
|
AT_CHECK([test-hash], [0], [ignore])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([test hash map])
|
|
AT_CHECK([test-hmap], [0], [ignore])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([test linked lists])
|
|
AT_CHECK([test-list], [0], [ignore])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([test SHA-1])
|
|
AT_CHECK([test-sha1], [0], [ignore])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([test type properties])
|
|
AT_CHECK([test-type-props], [0], [ignore])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([test strtok_r bug fix])
|
|
AT_CHECK([test-strtok_r], [0], [ignore])
|
|
AT_CLEANUP
|