]> git.baikalelectronics.ru Git - kernel.git/commitdiff
selftests/futex: fix build for clang
authorRicardo Cañuelo <ricardo.canuelo@collabora.com>
Mon, 10 Oct 2022 06:37:02 +0000 (08:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Nov 2022 16:42:12 +0000 (17:42 +0100)
[ Upstream commit 9cd4b2481299801528b7f077ad211850130d2936 ]

Don't use the test-specific header files as source files to force a
target dependency, as clang will complain if more than one source file
is used for a compile command with a single '-o' flag.

Use the proper Makefile variables instead as defined in
tools/testing/selftests/lib.mk.

Signed-off-by: Ricardo Cañuelo <ricardo.canuelo@collabora.com>
Reviewed-by: André Almeida <andrealmeid@igalia.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/testing/selftests/futex/functional/Makefile

index 30996306cabcfe89a47977643e529b122893bb7e..479531f5865d241c375672687d5f6432788949a9 100644 (file)
@@ -3,11 +3,11 @@ INCLUDES := -I../include -I../../
 CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES)
 LDFLAGS := $(LDFLAGS) -pthread -lrt
 
-HEADERS := \
+LOCAL_HDRS := \
        ../include/futextest.h \
        ../include/atomic.h \
        ../include/logging.h
-TEST_GEN_FILES := \
+TEST_GEN_PROGS := \
        futex_wait_timeout \
        futex_wait_wouldblock \
        futex_requeue_pi \
@@ -21,5 +21,3 @@ TEST_PROGS := run.sh
 top_srcdir = ../../../../..
 KSFT_KHDR_INSTALL := 1
 include ../../lib.mk
-
-$(TEST_GEN_FILES): $(HEADERS)