32dcfba6f8
This adds make install support to selftests. The basic usage is: $ cd tools/testing/selftests $ make install That installs into tools/testing/selftests/install, which can then be copied where ever necessary. The install destination is also configurable using eg: $ INSTALL_PATH=/mnt/selftests make install The implementation uses two targets in the child makefiles. The first "install" is expected to install all files into $(INSTALL_PATH). The second, "emit_tests", is expected to emit the test instructions (ie. bash script) on stdout. Separating this from install means the child makefiles need no knowledge of the location of the test script. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
21 lines
558 B
Makefile
21 lines
558 B
Makefile
all:
|
|
gcc -O2 mq_open_tests.c -o mq_open_tests -lrt
|
|
gcc -O2 -o mq_perf_tests mq_perf_tests.c -lrt -lpthread -lpopt
|
|
|
|
include ../lib.mk
|
|
|
|
override define RUN_TESTS
|
|
@./mq_open_tests /test1 || echo "selftests: mq_open_tests [FAIL]"
|
|
@./mq_perf_tests || echo "selftests: mq_perf_tests [FAIL]"
|
|
endef
|
|
|
|
TEST_PROGS := mq_open_tests mq_perf_tests
|
|
|
|
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
|
|
|
|
clean:
|
|
rm -f mq_open_tests mq_perf_tests
|