mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 17:13:52 +02:00
Currently the vDSO kselftests have a test called vdso_test which tests the vDSO implementation of gettimeofday(). In preparation for adding tests for other vDSO functionality rename this test to reflect what's going on. Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
27 lines
784 B
Makefile
27 lines
784 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
include ../lib.mk
|
|
|
|
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
|
|
|
|
TEST_GEN_PROGS := $(OUTPUT)/vdso_test_gettimeofday
|
|
ifeq ($(ARCH),x86)
|
|
TEST_GEN_PROGS += $(OUTPUT)/vdso_standalone_test_x86
|
|
endif
|
|
|
|
ifndef CROSS_COMPILE
|
|
CFLAGS := -std=gnu99
|
|
CFLAGS_vdso_standalone_test_x86 := -nostdlib -fno-asynchronous-unwind-tables -fno-stack-protector
|
|
ifeq ($(CONFIG_X86_32),y)
|
|
LDLIBS += -lgcc_s
|
|
endif
|
|
|
|
all: $(TEST_GEN_PROGS)
|
|
$(OUTPUT)/vdso_test_gettimeofday: parse_vdso.c vdso_test_gettimeofday.c
|
|
$(OUTPUT)/vdso_standalone_test_x86: vdso_standalone_test_x86.c parse_vdso.c
|
|
$(CC) $(CFLAGS) $(CFLAGS_vdso_standalone_test_x86) \
|
|
vdso_standalone_test_x86.c parse_vdso.c \
|
|
-o $@
|
|
|
|
endif
|