Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 91ab883eb21325ad80f3473633f794c78ac87f51 authored by Linus Torvalds on 19 February 2018, 01:29:42 UTC
Linux 4.16-rc2
Tip revision: 91ab883
Makefile
# SPDX-License-Identifier: GPL-2.0
CFLAGS += -O2
LDLIBS = -lrt -lpthread -lpopt
TEST_GEN_PROGS := mq_open_tests mq_perf_tests

include ../lib.mk

override define RUN_TESTS
	@$(OUTPUT)/mq_open_tests /test1 || echo "selftests: mq_open_tests [FAIL]"
	@$(OUTPUT)/mq_perf_tests || echo "selftests: mq_perf_tests [FAIL]"
endef

override define EMIT_TESTS
	echo "./mq_open_tests /test1 || echo \"selftests: mq_open_tests [FAIL]\""
	echo "./mq_perf_tests || echo \"selftests: mq_perf_tests [FAIL]\""
endef

back to top