Makefile revision 1.6
11.5Smgorny# $NetBSD: Makefile,v 1.6 2019/01/29 19:59:10 mgorny Exp $ 21.1Sjruoho 31.1Sjruoho.include <bsd.own.mk> 41.1Sjruoho 51.1SjruohoTESTSDIR= ${TESTSBASE}/usr.bin/cc 61.1Sjruoho 71.5SmgornyASAN_TESTS= # 81.5SmgornyASAN_TESTS+= t_asan_double_free 91.5SmgornyASAN_TESTS+= t_asan_global_buffer_overflow 101.5SmgornyASAN_TESTS+= t_asan_heap_overflow 111.5SmgornyASAN_TESTS+= t_asan_off_by_one 121.5SmgornyASAN_TESTS+= t_asan_poison 131.5SmgornyASAN_TESTS+= t_asan_uaf 141.5Smgorny 151.6SmgornyUBSAN_TESTS= # 161.6SmgornyUBSAN_TESTS+= t_ubsan_int_add_overflow 171.6SmgornyUBSAN_TESTS+= t_ubsan_int_neg_overflow 181.6SmgornyUBSAN_TESTS+= t_ubsan_vla_out_of_bounds 191.6SmgornyUBSAN_TESTS+= t_ubsan_int_sub_overflow 201.6SmgornyUBSAN_TESTS+= t_ubsan_int_divzero 211.6Smgorny 221.2SkamilTESTS_SH= # 231.5SmgornyTESTS_SH+= $(ASAN_TESTS) 241.6SmgornyTESTS_SH+= $(UBSAN_TESTS) 251.2SkamilTESTS_SH+= t_hello 261.1Sjruoho 271.5Smgorny.for test in ${ASAN_TESTS} 281.5SmgornyTESTS_SH_SRC_${test}= asan_common.subr ${test}.sh 291.5Smgorny.endfor 301.6Smgorny.for test in ${UBSAN_TESTS} 311.6SmgornyTESTS_SH_SRC_${test}= ubsan_common.subr ${test}.sh 321.6Smgorny.endfor 331.5Smgorny 341.1Sjruoho.include <bsd.test.mk> 35