Makefile revision 1.5
1# $NetBSD: Makefile,v 1.5 2019/01/29 19:56:37 mgorny Exp $ 2 3.include <bsd.own.mk> 4 5TESTSDIR= ${TESTSBASE}/usr.bin/cc 6 7ASAN_TESTS= # 8ASAN_TESTS+= t_asan_double_free 9ASAN_TESTS+= t_asan_global_buffer_overflow 10ASAN_TESTS+= t_asan_heap_overflow 11ASAN_TESTS+= t_asan_off_by_one 12ASAN_TESTS+= t_asan_poison 13ASAN_TESTS+= t_asan_uaf 14 15TESTS_SH= # 16TESTS_SH+= $(ASAN_TESTS) 17TESTS_SH+= t_ubsan_int_add_overflow 18TESTS_SH+= t_ubsan_int_sub_overflow 19TESTS_SH+= t_ubsan_int_neg_overflow 20TESTS_SH+= t_ubsan_int_divzero 21TESTS_SH+= t_ubsan_vla_out_of_bounds 22TESTS_SH+= t_hello 23 24.for test in ${ASAN_TESTS} 25TESTS_SH_SRC_${test}= asan_common.subr ${test}.sh 26.endfor 27 28.include <bsd.test.mk> 29