opnsense-src/cddl/usr.sbin/dtrace/tests/Makefile
Mariusz Zaborski 75ed05ef7d DTrace: create an amd64 test suit
Create two tests checking if we can read urgs registers and if the
rax register returns a correct number.

Reviewed by:	markj
Discussed with:	lwhsu
MFC after:	2 weeks
Differential Revision:	https://reviews.freebsd.org/D20364
2019-06-05 22:32:26 +00:00

22 lines
316 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
TESTS_SUBDIRS+= common
.if ${MACHINE_CPUARCH} == "i386"
TESTS_SUBDIRS+= i386
.endif
.if ${MACHINE_CPUARCH} == "amd64"
TESTS_SUBDIRS+= amd64
.endif
.PATH: ${SRCTOP}/tests
KYUAFILE= yes
.PATH: ${.CURDIR}/tools
SCRIPTSDIR= ${TESTSDIR}
SCRIPTS= dtest.sh
.include <bsd.test.mk>