diff options
author | Julio Merino <jmmv@FreeBSD.org> | 2014-08-14 14:58:52 +0000 |
---|---|---|
committer | Julio Merino <jmmv@FreeBSD.org> | 2014-08-14 14:58:52 +0000 |
commit | 82cb516c37c6dfa845df957a0277ea71c088c096 (patch) | |
tree | 96e51264d3af5a574fcfeafa418c2d872b8fd76e | |
parent | 1: Stagify. (diff) |
Update kyua-testers to 0.3:
Experimental version released on August 8th, 2014.
* Made the testers set a "sanitized" value for the HOME environment
variable where, for example, consecutive and trailing slashes have
been cleared. Mac OS X has a tendency to append a trailing slash to
the value of TMPDIR, which can cause third-party tests to fail if they
compare ${HOME} with $(pwd).
* Issues 85, 86, 90 and 92: Made the TAP parser more complete: mark test
cases reported as TODO or SKIP as passed; handle skip plans; ignore
lines that look like "ok" and "not ok" but aren't results; and handle
test programs that report a pass but exit with a non-zero code.
Reviewed by: bdrewery (D567)
Approved by: bdrewery (ports)
Notes
Notes:
svn path=/head/; revision=364847
-rw-r--r-- | devel/kyua-testers/Makefile | 7 | ||||
-rw-r--r-- | devel/kyua-testers/distinfo | 4 | ||||
-rw-r--r-- | devel/kyua-testers/pkg-descr | 2 |
3 files changed, 6 insertions, 7 deletions
diff --git a/devel/kyua-testers/Makefile b/devel/kyua-testers/Makefile index 7e0a9397d32b..a2fd49111691 100644 --- a/devel/kyua-testers/Makefile +++ b/devel/kyua-testers/Makefile @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= kyua-testers -PORTVERSION= 0.2 -PORTREVISION= 3 +PORTVERSION= 0.3 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} -PROJECTHOST= kyua +MASTER_SITES= https://github.com/jmmv/kyua/releases/download/${PORTNAME}-${PORTVERSION}/ \ + LOCAL/jmmv MAINTAINER= jmmv@FreeBSD.org COMMENT= Kyua (automated testing framework) - Testers diff --git a/devel/kyua-testers/distinfo b/devel/kyua-testers/distinfo index 8eb7726a9478..8f73dc5d55a8 100644 --- a/devel/kyua-testers/distinfo +++ b/devel/kyua-testers/distinfo @@ -1,2 +1,2 @@ -SHA256 (kyua-testers-0.2.tar.gz) = 8e788d9f6a1b86bcf3b436e870cbc801cf7650fa3f0f82da8b025e36ffe84feb -SIZE (kyua-testers-0.2.tar.gz) = 179731 +SHA256 (kyua-testers-0.3.tar.gz) = b9848d965e09fcbc0b42c3a8fa025611d81c7b238bdb5da20aa760908eebb9db +SIZE (kyua-testers-0.3.tar.gz) = 185769 diff --git a/devel/kyua-testers/pkg-descr b/devel/kyua-testers/pkg-descr index 08b16bb30b8d..f28a51b2255f 100644 --- a/devel/kyua-testers/pkg-descr +++ b/devel/kyua-testers/pkg-descr @@ -9,4 +9,4 @@ with test programs of various kinds. The interface of such testers allows the caller to execute a single test case of a single test program in a controlled and homogeneous manner. -WWW: https://code.google.com/p/kyua/ +WWW: https://github.com/jmmv/kyua/ |