mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
88232ec1ec
These verify the API contracts and help exercise lifetime rules for consumer sockets and handshake_req structures. One way to run these tests: ./tools/testing/kunit/kunit.py run --kunitconfig ./net/handshake/.kunitconfig Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
14 lines
332 B
Makefile
14 lines
332 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the Generic HANDSHAKE service
|
|
#
|
|
# Author: Chuck Lever <chuck.lever@oracle.com>
|
|
#
|
|
# Copyright (c) 2023, Oracle and/or its affiliates.
|
|
#
|
|
|
|
obj-y += handshake.o
|
|
handshake-y := genl.o netlink.o request.o tlshd.o trace.o
|
|
|
|
obj-$(CONFIG_NET_HANDSHAKE_KUNIT_TEST) += handshake-test.o
|