Makefile revision 1.7
11.7Smrg# $NetBSD: Makefile,v 1.7 2019/02/09 00:12:14 mrg 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.7SmrgTESTS_SH+= t_libgomp 271.1Sjruoho 281.5Smgorny.for test in ${ASAN_TESTS} 291.5SmgornyTESTS_SH_SRC_${test}= asan_common.subr ${test}.sh 301.5Smgorny.endfor 311.6Smgorny.for test in ${UBSAN_TESTS} 321.6SmgornyTESTS_SH_SRC_${test}= ubsan_common.subr ${test}.sh 331.6Smgorny.endfor 341.5Smgorny 351.1Sjruoho.include <bsd.test.mk> 36