pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/atf Update to 0.9:
details: https://anonhg.NetBSD.org/pkgsrc/rev/7b5ee0c50984
branches: trunk
changeset: 576206:7b5ee0c50984
user: jmmv <jmmv%pkgsrc.org@localhost>
date: Thu Jun 03 16:07:25 2010 +0000
description:
Update to 0.9:
Experimental version released on June 3rd, 2010.
* Added atf-sh, an interpreter to process test programs written using
the shell API. This is not really a shell interpreter by itself
though: it is just a wrapper around the system shell that eases the
loading of the necessary ATF libraries.
* Removed atf-compile in favour of atf-sh.
* Added the use.fs metadata property to test case, which is used to
specify which test cases require file system access. This is to
highlight dependencies on external resources more clearly and to speed
up the execution of test suites by skipping the creation of many
unnecessary work directories.
* Fixed test programs to get a sane default value for their source
directory. This means that it should not be necessary any more to pass
-s when running test programs that do not live in the current
directory.
* Defining test case headers became optional. This is trivial to achieve
in shell-based tests but a bit ugly in C and C++. In C, use the new
ATF_TC_WITHOUT_HEAD macro to define the test case, and in C++ use
ATF_TEST_CASE_WITHOUT_HEAD.
diffstat:
devel/atf/Makefile | 6 +++---
devel/atf/PLIST | 20 +++++++-------------
devel/atf/distinfo | 8 ++++----
3 files changed, 14 insertions(+), 20 deletions(-)
diffs (123 lines):
diff -r 0fb0e100d866 -r 7b5ee0c50984 devel/atf/Makefile
--- a/devel/atf/Makefile Thu Jun 03 15:45:20 2010 +0000
+++ b/devel/atf/Makefile Thu Jun 03 16:07:25 2010 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.11 2010/05/07 15:35:06 jmmv Exp $
+# $NetBSD: Makefile,v 1.12 2010/06/03 16:07:25 jmmv Exp $
#
-DISTNAME= atf-0.8
+DISTNAME= atf-0.9
CATEGORIES= devel
-MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/jmmv/atf/0.8/
+MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/jmmv/atf/0.9/
MAINTAINER= jmmv%NetBSD.org@localhost
HOMEPAGE= http://www.NetBSD.org/~jmmv/atf/
diff -r 0fb0e100d866 -r 7b5ee0c50984 devel/atf/PLIST
--- a/devel/atf/PLIST Thu Jun 03 15:45:20 2010 +0000
+++ b/devel/atf/PLIST Thu Jun 03 16:07:25 2010 +0000
@@ -1,9 +1,9 @@
-@comment $NetBSD: PLIST,v 1.10 2010/05/07 15:35:06 jmmv Exp $
+@comment $NetBSD: PLIST,v 1.11 2010/06/03 16:07:25 jmmv Exp $
bin/atf-check
-bin/atf-compile
bin/atf-config
bin/atf-report
bin/atf-run
+bin/atf-sh
bin/atf-version
include/atf-c++.hpp
include/atf-c++/application.hpp
@@ -41,7 +41,6 @@
include/atf-c/list.h
include/atf-c/macros.h
include/atf-c/map.h
-include/atf-c/object.h
include/atf-c/process.h
include/atf-c/sanity.h
include/atf-c/tc.h
@@ -58,11 +57,11 @@
libexec/atf-format
man/man1/atf-check.1
man/man1/atf-cleanup.1
-man/man1/atf-compile.1
man/man1/atf-config.1
man/man1/atf-format.1
man/man1/atf-report.1
man/man1/atf-run.1
+man/man1/atf-sh.1
man/man1/atf-test-program.1
man/man1/atf-version.1
man/man3/atf-c++-api.3
@@ -72,9 +71,7 @@
man/man5/atf-formats.5
man/man7/atf.7
share/atf/atf-run.hooks
-share/atf/atf.footer.subr
-share/atf/atf.header.subr
-share/atf/atf.init.subr
+share/atf/libatf-sh.subr
share/doc/atf/AUTHORS
share/doc/atf/COPYING
share/doc/atf/NEWS
@@ -122,6 +119,7 @@
tests/atf/atf-c++/t_io
tests/atf/atf-c++/t_macros
tests/atf/atf-c++/t_parser
+tests/atf/atf-c++/t_pkg_config
tests/atf/atf-c++/t_process
tests/atf/atf-c++/t_sanity
tests/atf/atf-c++/t_signals
@@ -144,7 +142,6 @@
tests/atf/atf-c/d_include_list_h.c
tests/atf/atf-c/d_include_macros_h.c
tests/atf/atf-c/d_include_map_h.c
-tests/atf/atf-c/d_include_object_h.c
tests/atf/atf-c/d_include_process_h.c
tests/atf/atf-c/d_include_sanity_h.c
tests/atf/atf-c/d_include_tc_h.c
@@ -168,6 +165,7 @@
tests/atf/atf-c/t_list
tests/atf/atf-c/t_macros
tests/atf/atf-c/t_map
+tests/atf/atf-c/t_pkg_config
tests/atf/atf-c/t_process
tests/atf/atf-c/t_sanity
tests/atf/atf-c/t_tc
@@ -180,9 +178,6 @@
tests/atf/atf-check/t_integration
tests/atf/atf-cleanup/Atffile
tests/atf/atf-cleanup/t_integration
-tests/atf/atf-compile/Atffile
-tests/atf/atf-compile/h_mode
-tests/atf/atf-compile/t_integration
tests/atf/atf-config/Atffile
tests/atf/atf-config/t_integration
tests/atf/atf-report/Atffile
@@ -205,11 +200,10 @@
tests/atf/atf-sh/h_misc
tests/atf/atf-sh/t_atf_check
tests/atf/atf-sh/t_config
+tests/atf/atf-sh/t_integration
tests/atf/atf-sh/t_normalize
tests/atf/atf-sh/t_tc
tests/atf/atf-sh/t_tp
-tests/atf/data/Atffile
-tests/atf/data/t_pkg_config
tests/atf/formats/Atffile
tests/atf/formats/d_atffile_1
tests/atf/formats/d_atffile_1.expout
diff -r 0fb0e100d866 -r 7b5ee0c50984 devel/atf/distinfo
--- a/devel/atf/distinfo Thu Jun 03 15:45:20 2010 +0000
+++ b/devel/atf/distinfo Thu Jun 03 16:07:25 2010 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2010/05/07 15:35:06 jmmv Exp $
+$NetBSD: distinfo,v 1.9 2010/06/03 16:07:26 jmmv Exp $
-SHA1 (atf-0.8.tar.gz) = a86416081f0381eaab2d7f1c129202f282335afd
-RMD160 (atf-0.8.tar.gz) = 3fae9e5a121ed39ab8d5e56fffa5b7c436be66d1
-Size (atf-0.8.tar.gz) = 669187 bytes
+SHA1 (atf-0.9.tar.gz) = 10a3dee3543ee9e8b5d2b67bcd3f4b2a8921f21f
+RMD160 (atf-0.9.tar.gz) = e4868246512a815469f7b3cd35971795f23e5d0d
+Size (atf-0.9.tar.gz) = 674458 bytes
Home |
Main Index |
Thread Index |
Old Index