aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/exec
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2015-03-11 00:06:00 -0400
committerShuah Khan <shuahkh@osg.samsung.com>2015-03-13 17:21:56 -0400
commit32dcfba6f8df667e4b915e0542b33ccbc8e76fa8 (patch)
treeb7e9728ba9a2e7ba625bf37b374b56762bc082b0 /tools/testing/selftests/exec
parent5e29a9105b1a0da86eff0ad6ae015997b49d4d1d (diff)
selftests: Add install target
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>
Diffstat (limited to 'tools/testing/selftests/exec')
-rw-r--r--tools/testing/selftests/exec/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/testing/selftests/exec/Makefile b/tools/testing/selftests/exec/Makefile
index a0098daeb73d..886cabe307b1 100644
--- a/tools/testing/selftests/exec/Makefile
+++ b/tools/testing/selftests/exec/Makefile
@@ -19,8 +19,11 @@ execveat.denatured: execveat
19 $(CC) $(CFLAGS) -o $@ $^ 19 $(CC) $(CFLAGS) -o $@ $^
20 20
21TEST_PROGS := execveat 21TEST_PROGS := execveat
22TEST_FILES := $(DEPS)
22 23
23include ../lib.mk 24include ../lib.mk
24 25
26override EMIT_TESTS := echo "mkdir -p subdir; (./execveat && echo \"selftests: execveat [PASS]\") || echo \"selftests: execveat [FAIL]\""
27
25clean: 28clean:
26 rm -rf $(BINARIES) $(DEPS) subdir.moved execveat.moved xxxxx* 29 rm -rf $(BINARIES) $(DEPS) subdir.moved execveat.moved xxxxx*