mirror of
https://github.com/opnsense/src.git
synced 2026-02-10 06:15:40 -05:00
14 lines
324 B
Makefile
14 lines
324 B
Makefile
PROG= malloc
|
|
SRCS= main.c
|
|
.PATH: ${.CURDIR}/../../../lib/libc/stdlib
|
|
|
|
MAN=
|
|
|
|
test: malloc
|
|
@echo
|
|
@csh -x -c "time ./malloc 500000 2000 8192"
|
|
@csh -x -c "time ./malloc 50000000 2000 8192"
|
|
@csh -x -c "time ./malloc 500000 14000 8192"
|
|
@csh -x -c "time ./malloc 20000000 20000 2048"
|
|
|
|
.include <bsd.prog.mk>
|