mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
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
22 lines
316 B
Makefile
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>
|