[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1366887900-24769-1-git-send-email-alex.mihai.c@gmail.com>
Date: Thu, 25 Apr 2013 14:04:57 +0300
From: Alexandru Copot <alex.mihai.c@...il.com>
To: linux-kernel@...r.kernel.org
Cc: netdev@...r.kernel.org, akpm@...ux-foundation.org,
davem@...emloft.net, willemb@...gle.com, dborkman@...hat.com,
ebiederm@...ssion.com, gorcunov@...nvz.org, palewis@...be.com,
edumazet@...gle.com, Alexandru Copot <alex.mihai.c@...il.com>,
Daniel Baluta <dbaluta@...acom.com>
Subject: [PATCH 0/3 RFC v2] selftests: Basic framework for tests
This series adds a generic test abstraction that can make
writing testcases easier. A generic_test structure is
used to define a test and its methods: prepare, run, cleanup.
This is a generic implementation so it was placed in selftests/lib.
The second patch updates the socket tests to use the
new framework and the third patch creates new tests
for [set/get]sockopt with some IPV6_* options.
Signed-of-by Alexandru Copot <alex.mihai.c@...il.com>
Cc: Daniel Baluta <dbaluta@...acom.com>
Changes since v1:
- moved the implementation to selftests/lib
- use goto instead of directly returning
Alexandru Copot (3):
selftests: introduce testing abstractions
selftests/net: update socket test to use new testing framework
selftests/net: add socket options test with IPv6 testcases
tools/testing/selftests/Makefile | 3 +-
tools/testing/selftests/lib/Makefile | 14 ++
tools/testing/selftests/lib/selftests.c | 57 +++++++++
tools/testing/selftests/lib/selftests.h | 67 ++++++++++
tools/testing/selftests/net/Makefile | 17 ++-
tools/testing/selftests/net/run_netsocktests | 10 ++
tools/testing/selftests/net/socket.c | 108 +++++++++++-----
tools/testing/selftests/net/sockopt.c | 185 +++++++++++++++++++++++++++
8 files changed, 425 insertions(+), 36 deletions(-)
create mode 100644 tools/testing/selftests/lib/Makefile
create mode 100644 tools/testing/selftests/lib/selftests.c
create mode 100644 tools/testing/selftests/lib/selftests.h
create mode 100644 tools/testing/selftests/net/sockopt.c
--
1.8.2.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists