Module Name: src
Committed By: mrg
Date: Sun Nov 13 21:57:12 UTC 2022
Modified Files:
src/external/mit/xorg/lib/pixman/test: Makefile
Log Message:
add a 'check' target to run the tests (needs to be on the same arch as host.)
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/lib/pixman/test/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/mit/xorg/lib/pixman/test/Makefile
diff -u src/external/mit/xorg/lib/pixman/test/Makefile:1.1 src/external/mit/xorg/lib/pixman/test/Makefile:1.2
--- src/external/mit/xorg/lib/pixman/test/Makefile:1.1 Sun Nov 13 09:36:37 2022
+++ src/external/mit/xorg/lib/pixman/test/Makefile Sun Nov 13 21:57:12 2022
@@ -1,5 +1,5 @@
-# $NetBSD: Makefile,v 1.1 2022/11/13 09:36:37 mrg Exp $
+# $NetBSD: Makefile,v 1.2 2022/11/13 21:57:12 mrg Exp $
NOINSTALL=1
NOMAN=1
@@ -56,5 +56,12 @@ LDADD+= -lpixman-1
.PATH: ${X11SRCDIR.pixman}/test
+check:
+.for test in ${PROGS}
+ echo -n "Starting ${test}: "; date
+ ./${test} && echo Passed: ${test}
+.endfor
+ echo -n "Done: "; date
+
.include <bsd.x11.mk>
.include <bsd.prog.mk>