mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Start fresh on master, only apply needed patches on top now. Upstream commit: 56279fdef34eb28a4655b489b992c651bd8379fc Taken from: FreeBSD
39 lines
570 B
Makefile
39 lines
570 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/kern/execve
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
MAN=
|
|
|
|
ATF_TESTS_SH+= execve_test
|
|
|
|
PROGS+= good_aout
|
|
PROGS+= execve_helper
|
|
|
|
LDFLAGS.goodaout+= -static
|
|
|
|
CLEANFILES+= empty
|
|
CLEANFILES+= sparse_aout
|
|
CLEANFILES+= trunc_aout
|
|
|
|
SCRIPTS+= bad_interp_len
|
|
SCRIPTS+= dev_null_script
|
|
SCRIPTS+= empty
|
|
SCRIPTS+= good_script
|
|
SCRIPTS+= non_exist_shell
|
|
SCRIPTS+= script_arg
|
|
SCRIPTS+= script_arg_nospace
|
|
SCRIPTS+= sparse_aout
|
|
SCRIPTS+= trunc_aout
|
|
|
|
empty:
|
|
@touch $@
|
|
|
|
sparse_aout:
|
|
@truncate -s 20480 $@
|
|
|
|
trunc_aout:
|
|
@truncate -s 16 $@
|
|
|
|
.include <bsd.test.mk>
|