mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
This adds macros for checked addition, subtraction, and multiplication with semantics similar to the builtins gcc and clang have had for years. Reviewed by: kib, emaste Differential Revision: https://reviews.freebsd.org/D41734 (cherry picked from commite6615b1034) include: Add tests for N2867. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D41735 (cherry picked from commit4fbb9c43aa) less: We have <stdckdint.h> now. Reviewed by: delphij Differential Revision: https://reviews.freebsd.org/D41736 (cherry picked from commitcb8dd292c7) Approved by: re (gjb)
24 lines
407 B
Makefile
24 lines
407 B
Makefile
|
|
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}
|
|
|
|
${PACKAGE}FILES+= README __init__.py conftest.py
|
|
|
|
KYUAFILE= yes
|
|
|
|
SUBDIR+= etc
|
|
SUBDIR+= examples
|
|
SUBDIR+= include
|
|
SUBDIR+= sys
|
|
SUBDIR+= atf_python
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
afterinstall: install-tests-local
|
|
install-tests-local: .PHONY
|
|
${INSTALL_SYMLINK} -T 'package=tests' \
|
|
../local/tests ${DESTDIR}${TESTSDIR}/local
|
|
|
|
.include "Makefile.inc0"
|
|
.include <bsd.test.mk>
|