]> git.samba.org - sfrench/cifs-2.6.git/commitdiff
selftests: futex: Correctly include headers dirs
authorAndré Almeida <andrealmeid@collabora.com>
Tue, 27 Apr 2021 13:53:27 +0000 (10:53 -0300)
committerIngo Molnar <mingo@kernel.org>
Wed, 12 May 2021 18:44:58 +0000 (20:44 +0200)
When building selftests, the build system will install uapi linux
headers at usr/include in kernel source's root directory. When building
with a different output folder, the headers will be installed at
kselftests/usr/include.

Add both paths so we can build the tests using up-to-date headers.

Currently, this is uncommon to happen since it's rare to find a
build system with an outdated futex header, but it happens
when testing new futex operations.

Signed-off-by: André Almeida <andrealmeid@collabora.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20210427135328.11013-2-andrealmeid@collabora.com
tools/testing/selftests/futex/functional/Makefile

index 23207829ec752b52a56577a679f5baf3f3f51a46..1d2b3b2a5b86b5589f5c5db66c283dfd24beec92 100644 (file)
@@ -1,5 +1,6 @@
 # SPDX-License-Identifier: GPL-2.0
-INCLUDES := -I../include -I../../
+INCLUDES := -I../include -I../../ -I../../../../../usr/include/ \
+       -I$(KBUILD_OUTPUT)/kselftest/usr/include
 CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES)
 LDLIBS := -lpthread -lrt