1# $FreeBSD$ 2 3PACKAGE= tests 4FILESGROUPS= TESTS 5TESTSPACKAGE= ${PACKAGE} 6TESTSDIR= ${TESTSBASE}/sys/kern/execve 7 8BINDIR= ${TESTSDIR} 9 10MAN= 11 12ATF_TESTS_SH+= execve_test 13 14PROGS+= good_aout 15PROGS+= execve_helper 16 17LDFLAGS.goodaout+= -static 18 19CLEANFILES+= empty 20CLEANFILES+= sparse_aout 21CLEANFILES+= trunc_aout 22 23SCRIPTS+= bad_interp_len 24SCRIPTS+= dev_null_script 25SCRIPTS+= empty 26SCRIPTS+= good_script 27SCRIPTS+= non_exist_shell 28SCRIPTS+= script_arg 29SCRIPTS+= script_arg_nospace 30SCRIPTS+= sparse_aout 31SCRIPTS+= trunc_aout 32 33empty: 34 @touch $@ 35 36sparse_aout: 37 @truncate -s 20480 $@ 38 39trunc_aout: 40 @truncate -s 16 $@ 41 42.include <bsd.test.mk> 43