mbox series

[net-next,0/3] selftests/net: various

Message ID 20180531161440.89709-1-willemdebruijn.kernel@gmail.com
Headers show
Series selftests/net: various | expand

Message

Willem de Bruijn May 31, 2018, 4:14 p.m. UTC
From: Willem de Bruijn <willemb@google.com>

A few odds and ends to network tests:

- msg_zerocopy: run as part of kselftest
- udp gso:      add missing bounds test for minimal sizes
- psocket_snd:  initial basic conformance test

Willem de Bruijn (3):
  selftests/net: enable msg_zerocopy test
  selftests/net: udpgso: test small gso_size boundary conditions
  selftests/net: add packet socket packet_snd test

 tools/testing/selftests/net/.gitignore      |   1 +
 tools/testing/selftests/net/Makefile        |   4 +-
 tools/testing/selftests/net/msg_zerocopy.sh |   8 +
 tools/testing/selftests/net/psock_snd.c     | 398 ++++++++++++++++++++
 tools/testing/selftests/net/psock_snd.sh    |  98 +++++
 tools/testing/selftests/net/udpgso.c        |  77 +++-
 6 files changed, 582 insertions(+), 4 deletions(-)
 create mode 100644 tools/testing/selftests/net/psock_snd.c
 create mode 100755 tools/testing/selftests/net/psock_snd.sh

Comments

David Miller June 4, 2018, 1:50 p.m. UTC | #1
From: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
Date: Thu, 31 May 2018 12:14:37 -0400

> From: Willem de Bruijn <willemb@google.com>
> 
> A few odds and ends to network tests:
> 
> - msg_zerocopy: run as part of kselftest
> - udp gso:      add missing bounds test for minimal sizes
> - psocket_snd:  initial basic conformance test

Always great to see new tests.

Series applied, thanks Willem.