]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - tests/sys/kern/execve/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / tests / sys / kern / execve / Makefile
1 # $FreeBSD$
2
3 TESTSDIR=       ${TESTSBASE}/sys/kern/execve
4
5 BINDIR=         ${TESTSDIR}
6
7 MAN=
8
9 ATF_TESTS_SH+=  execve_test
10
11 PROGS+=         good_aout
12 PROGS+=         execve_helper
13
14 LDFLAGS.goodaout+=      -static
15
16 CLEANFILES+=    empty
17 CLEANFILES+=    sparse_aout
18 CLEANFILES+=    trunc_aout
19
20 SCRIPTS+=       bad_interp_len
21 SCRIPTS+=       dev_null_script
22 SCRIPTS+=       empty
23 SCRIPTS+=       good_script
24 SCRIPTS+=       non_exist_shell
25 SCRIPTS+=       script_arg
26 SCRIPTS+=       script_arg_nospace
27 SCRIPTS+=       sparse_aout
28 SCRIPTS+=       trunc_aout
29
30 empty:
31         @touch $@
32
33 sparse_aout:
34         @truncate -s 20480 $@
35
36 trunc_aout:
37         @truncate -s 16 $@
38
39 .include <bsd.test.mk>