diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2019-12-18 19:07:00 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-12-21 06:09:21 +0100 |
commit | df7e0e0d237e5a4ee262befb11b599058a178966 (patch) | |
tree | 105b98425f52cf9666836aef64d282c6debc8f16 /tools/testing/vsock/Makefile | |
parent | VSOCK: add SPDX identifiers to vsock tests (diff) | |
download | linux-df7e0e0d237e5a4ee262befb11b599058a178966.tar.xz linux-df7e0e0d237e5a4ee262befb11b599058a178966.zip |
VSOCK: extract utility functions from vsock_diag_test.c
Move useful functions into a separate file in preparation for more
vsock test programs.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/vsock/Makefile')
-rw-r--r-- | tools/testing/vsock/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/vsock/Makefile b/tools/testing/vsock/Makefile index d41a4e13960a..a916878a2d8c 100644 --- a/tools/testing/vsock/Makefile +++ b/tools/testing/vsock/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only all: test test: vsock_diag_test -vsock_diag_test: vsock_diag_test.o timeout.o control.o +vsock_diag_test: vsock_diag_test.o timeout.o control.o util.o CFLAGS += -g -O2 -Werror -Wall -I. -I../../include -I../../../usr/include -Wno-pointer-sign -fno-strict-overflow -fno-strict-aliasing -fno-common -MMD -U_FORTIFY_SOURCE -D_GNU_SOURCE .PHONY: all test clean |