Update atf and atf-libs to 0.17:
* Added the atf_utils_cat_file, atf_utils_compare_file, atf_utils_copy_file, atf_utils_create_file, atf_utils_file_exists, atf_utils_fork, atf_utils_grep_file, atf_utils_grep_string, atf_utils_readline, atf_utils_redirect and atf_utils_wait utility functions to atf-c-api. Documented the already-public atf_utils_free_charpp function. * Added the cat_file, compare_file, copy_file, create_file, file_exists, fork, grep_collection, grep_file, grep_string, redirect and wait functions to the atf::utils namespace of atf-c++-api. These are wrappers around the same functions added to the atf-c-api library. * Added the ATF_CHECK_MATCH, ATF_CHECK_MATCH_MSG, ATF_REQUIRE_MATCH and ATF_REQUIRE_MATCH_MSG macros to atf-c to simplify the validation of a string against a regular expression. * Miscellaneous fixes for manpage typos and compilation problems with clang. * Added caching of the results of those configure tests that rely on executing a test program. This should help crossbuild systems by providing a mechanism to pre-specify what the results should be. * PR bin/45690: Make atf-report convert any non-printable characters to a plain-text representation (matching their corresponding hexadecimal entities) in XML output files. This is to prevent the output of test cases from breaking xsltproc later.
This commit is contained in:
parent
56292fe314
commit
e9a43084fa
4 changed files with 11 additions and 10 deletions
|
@ -1,10 +1,11 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2012/07/10 22:02:59 jmmv Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2013/02/14 18:36:12 jmmv Exp $
|
||||
bin/atf-sh
|
||||
include/atf-c++.hpp
|
||||
include/atf-c++/build.hpp
|
||||
include/atf-c++/check.hpp
|
||||
include/atf-c++/config.hpp
|
||||
include/atf-c++/macros.hpp
|
||||
include/atf-c++/noncopyable.hpp
|
||||
include/atf-c++/tests.hpp
|
||||
include/atf-c++/utils.hpp
|
||||
include/atf-c.h
|
||||
|
@ -45,6 +46,7 @@ tests/atf/atf-c++/config_test
|
|||
tests/atf/atf-c++/detail/Atffile
|
||||
tests/atf/atf-c++/detail/Kyuafile
|
||||
tests/atf/atf-c++/detail/application_test
|
||||
tests/atf/atf-c++/detail/auto_array_test
|
||||
tests/atf/atf-c++/detail/env_test
|
||||
tests/atf/atf-c++/detail/exceptions_test
|
||||
tests/atf/atf-c++/detail/expand_test
|
||||
|
@ -76,7 +78,6 @@ tests/atf/atf-c/detail/map_test
|
|||
tests/atf/atf-c/detail/process_helpers
|
||||
tests/atf/atf-c/detail/process_test
|
||||
tests/atf/atf-c/detail/sanity_test
|
||||
tests/atf/atf-c/detail/test_helpers_test
|
||||
tests/atf/atf-c/detail/text_test
|
||||
tests/atf/atf-c/detail/user_test
|
||||
tests/atf/atf-c/error_test
|
||||
|
@ -103,7 +104,6 @@ tests/atf/test-programs/c_helpers
|
|||
tests/atf/test-programs/config_test
|
||||
tests/atf/test-programs/cpp_helpers
|
||||
tests/atf/test-programs/expect_test
|
||||
tests/atf/test-programs/fork_test
|
||||
tests/atf/test-programs/meta_data_test
|
||||
tests/atf/test-programs/result_test
|
||||
tests/atf/test-programs/sh_helpers
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.21 2012/07/10 22:02:59 jmmv Exp $
|
||||
# $NetBSD: Makefile,v 1.22 2013/02/14 18:36:12 jmmv Exp $
|
||||
#
|
||||
|
||||
.include "Makefile.common"
|
||||
|
@ -29,6 +29,7 @@ post-install:
|
|||
rm -rf ${DESTDIR}${PREFIX}/${file}
|
||||
.endfor
|
||||
|
||||
BUILDLINK_API_DEPENDS.atf-libs+= atf-libs>=${PKGVERSION_NOREV}
|
||||
.include "../../devel/atf-libs/buildlink3.mk"
|
||||
.include "../../textproc/xmlcatmgr/catalogs.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# $NetBSD: Makefile.common,v 1.3 2012/10/31 11:16:38 asau Exp $
|
||||
# $NetBSD: Makefile.common,v 1.4 2013/02/14 18:36:12 jmmv Exp $
|
||||
#
|
||||
# used by devel/atf/Makefile
|
||||
# used by devel/atf-libs/Makefile
|
||||
|
||||
DISTNAME= atf-0.16
|
||||
DISTNAME= atf-0.17
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://kyua.googlecode.com/files/
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.17 2012/07/10 22:02:59 jmmv Exp $
|
||||
$NetBSD: distinfo,v 1.18 2013/02/14 18:36:12 jmmv Exp $
|
||||
|
||||
SHA1 (atf-0.16.tar.gz) = 7068a8fd656617a75737138085dbd46991f1e1bf
|
||||
RMD160 (atf-0.16.tar.gz) = 32af753181915192c7e6330b44896ffa3cafffdf
|
||||
Size (atf-0.16.tar.gz) = 662290 bytes
|
||||
SHA1 (atf-0.17.tar.gz) = 943980515da6ae862463b036de6623b0be8d7091
|
||||
RMD160 (atf-0.17.tar.gz) = 87c6fad02f98b6c0372e561196045f47de08c6d3
|
||||
Size (atf-0.17.tar.gz) = 636185 bytes
|
||||
|
|
Loading…
Reference in a new issue