Add kselftest.h to logging.h and increment the pass and fail counters as part of the print_result routine which is called by all futex tests. Cc: Shuah Khan <shuahkh@osg.samsung.com> Cc: linux-api@vger.kernel.org Cc: Ingo Molnar <mingo@elte.hu> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Davidlohr Bueso <dave@stgolabs.net> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
26 lines
528 B
Makefile
26 lines
528 B
Makefile
INCLUDES := -I../include -I../../
|
|
CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES)
|
|
LDFLAGS := $(LDFLAGS) -pthread -lrt
|
|
|
|
HEADERS := ../include/futextest.h
|
|
TARGETS := \
|
|
futex_wait_timeout \
|
|
futex_wait_wouldblock \
|
|
futex_requeue_pi \
|
|
futex_requeue_pi_signal_restart \
|
|
futex_requeue_pi_mismatched_ops \
|
|
futex_wait_uninitialized_heap \
|
|
futex_wait_private_mapped_file
|
|
|
|
TEST_PROGS := $(TARGETS) run.sh
|
|
|
|
.PHONY: all clean
|
|
all: $(TARGETS)
|
|
|
|
$(TARGETS): $(HEADERS)
|
|
|
|
include ../../lib.mk
|
|
|
|
clean:
|
|
rm -f $(TARGETS)
|