summaryrefslogtreecommitdiff
path: root/devel/atf/Makefile
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2010-11-07 13:41:14 +0000
committerjmmv <jmmv@pkgsrc.org>2010-11-07 13:41:14 +0000
commitbf72a3fb54d042b95f513a3e95358c6a3cf5bd90 (patch)
treefb0d041d77eefd902507347d3da09d3b0147336a /devel/atf/Makefile
parent8421480a0b96d7fb57975210493f32cd20fb19b6 (diff)
downloadpkgsrc-bf72a3fb54d042b95f513a3e95358c6a3cf5bd90.tar.gz
Update atf to 0.12:
* Added the ATF_REQUIRE_THROW_RE to atf-c++, which is the same as ATF_REQUIRE_THROW but allows checking for the validity of the exception's error message by means of a regular expression. * Added the ATF_REQUIRE_MATCH to atf-c++, which allows checking for a regular expression match in a string. * Changed the default timeout for test cases from 5 minutes to 30 seconds. 30 seconds is long enough for virtually all tests to complete, and 5 minutes is a way too long pause in a test suite where a single test case stalls. * Deprecated the use.fs property. While this seemed like a good idea in the first place to impose more control on what test cases can do, it turns out to be bad. First, use.fs=false prevents bogus test cases from dumping core so after-the-fact debugging is harder. Second, supporting use.fs adds a lot of unnecessary complexity. atf-run will now ignore any value provided to use.fs and will allow test cases to freely access the file system if they wish to. * Added the atf_tc_get_config_var_as_{bool,long}{,_wd} functions to the atf-c library. The 'text' module became private in 0.11 but was being used externally to simplify the parsing of configuration variables. * Made atf-run recognize the 'unprivileged-user' configuration variable and automatically drop root privileges when a test case sets require.user=unprivileged. Note that this is, by no means, done for security purposes; this is just for user convenience; tests should, in general, not be blindly run as root in the first place.
Diffstat (limited to 'devel/atf/Makefile')
-rw-r--r--devel/atf/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/atf/Makefile b/devel/atf/Makefile
index 36d748462db..1db92b0b745 100644
--- a/devel/atf/Makefile
+++ b/devel/atf/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.14 2010/10/20 08:21:07 jmmv Exp $
+# $NetBSD: Makefile,v 1.15 2010/11/07 13:41:14 jmmv Exp $
#
-DISTNAME= atf-0.11
+DISTNAME= atf-0.12
CATEGORIES= devel
-MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/jmmv/atf/0.11/
+MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/jmmv/atf/0.12/
MAINTAINER= jmmv@NetBSD.org
HOMEPAGE= http://www.NetBSD.org/~jmmv/atf/