Add __T_VERBOSE() so tests can add verbose output. The verbose output is enabled with the '-v' command line option. Running 'make tests V=1' will enable the '-v' option when running the tests. It'll be used in the next patch, for a user space counter access test. Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Jiri Olsa <jolsa@redhat.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Itaru Kitayama <itaru.kitayama@gmail.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Will Deacon <will@kernel.org> Link: http://lore.kernel.org/lkml/20210414155412.3697605-3-robh@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
41 lines
992 B
Makefile
41 lines
992 B
Makefile
# SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
|
|
|
|
TESTS = test-cpumap test-threadmap test-evlist test-evsel
|
|
|
|
TESTS_SO := $(addsuffix -so,$(TESTS))
|
|
TESTS_A := $(addsuffix -a,$(TESTS))
|
|
|
|
TEST_ARGS := $(if $(V),-v)
|
|
|
|
# Set compile option CFLAGS
|
|
ifdef EXTRA_CFLAGS
|
|
CFLAGS := $(EXTRA_CFLAGS)
|
|
else
|
|
CFLAGS := -g -Wall
|
|
endif
|
|
|
|
all:
|
|
|
|
include $(srctree)/tools/scripts/Makefile.include
|
|
|
|
INCLUDE = -I$(srctree)/tools/lib/perf/include -I$(srctree)/tools/include -I$(srctree)/tools/lib
|
|
|
|
$(TESTS_A): FORCE
|
|
$(QUIET_LINK)$(CC) $(INCLUDE) $(CFLAGS) -o $@ $(subst -a,.c,$@) ../libperf.a $(LIBAPI)
|
|
|
|
$(TESTS_SO): FORCE
|
|
$(QUIET_LINK)$(CC) $(INCLUDE) $(CFLAGS) -L.. -o $@ $(subst -so,.c,$@) $(LIBAPI) -lperf
|
|
|
|
all: $(TESTS_A) $(TESTS_SO)
|
|
|
|
run:
|
|
@echo "running static:"
|
|
@for i in $(TESTS_A); do ./$$i $(TEST_ARGS); done
|
|
@echo "running dynamic:"
|
|
@for i in $(TESTS_SO); do LD_LIBRARY_PATH=../ ./$$i $(TEST_ARGS); done
|
|
|
|
clean:
|
|
$(call QUIET_CLEAN, tests)$(RM) $(TESTS_A) $(TESTS_SO)
|
|
|
|
.PHONY: all clean FORCE
|