Experimental version released on February 24th, 2012. * Made the 'test' command record the results of the executed test cases into a SQLite database. As a side effect, 'test' now supports a '--store' option to indicate where the database lives. * Added the 'report' command to generate plain-text reports of the test results stored in the database. The interface of this command is certainly subject to change at this point. * Added the 'db-exec' command to directly interact with the store database. * Issue 28: Added support for the 'require.memory' test case property introduced in ATF 0.15. * Renamed the user-specific configuration file from ~/.kyuarc to ~/.kyua/kyua.conf for consistency with other files stored in the ~/.kyua/ subdirectory. * Switched to use Lutok instead of our own wrappers over the Lua C library. Lutok is just what used to be our own utils::lua module, but is now distributed separately. * Removed the 'Atffile's from the source tree. Kyua is stable enough to generate trustworthy reports, and we do not want to give the impression that atf-run / atf-report are still supported. * Enabled logging to stderr for our own test programs. This makes it slightly easier to debug problems in our own code when we get a failing test.
35 lines
910 B
Makefile
35 lines
910 B
Makefile
# $NetBSD: Makefile,v 1.4 2012/02/24 21:07:41 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= kyua-cli-0.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://kyua.googlecode.com/files/
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://code.google.com/p/kyua/
|
|
COMMENT= Kyua (automated testing framework) - Command line interface
|
|
LICENSE= 2-clause-bsd
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
INFO_FILES= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
USE_LANGUAGES= c++
|
|
USE_TOOLS= makeinfo pkg-config
|
|
|
|
CONFIGURE_ARGS+= KYUA_CONFSUBDIR=
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --without-doxygen
|
|
|
|
PKG_SYSCONFSUBDIR= kyua
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/examples/Kyuafile.top \
|
|
${DESTDIR}${PREFIX}/tests/Kyuafile
|
|
|
|
.include "../../databases/sqlite3/buildlink3.mk"
|
|
.include "../../devel/atf/buildlink3.mk"
|
|
.include "../../devel/lutok/buildlink3.mk"
|
|
.include "../../lang/lua/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|