Thu Mar 31 16:30:12 2011 UTC ()
Update atf to 0.13:

Experimental version released on March 31st, 2011.

This is the first release after the creation of the Kyua project, a more
modular and reliable replacement for ATF.  From now on, ATF will change to
accomodate the transition to this new codebase, but ATF will still continue
to see development in the short/medium term.  Check out the project page at
http://code.google.com/p/kyua/ for more details.

The changes in this release are:

* Added support to run the tests with the Kyua runtime engine (kyua-cli), a
  new package that aims to replace atf-run and atf-report.  The ATF tests
  can be run with the new system by issuing a 'make installcheck-kyua' from
  the top-level directory of the project (assuming the 'kyua' binary is
  available during the configuration stage of ATF).

* atf-run and atf-report are now in maintenance mode (but *not* deprecated
  yet!).  Kyua already implements a new, much more reliable runtime engine
  that provides similar features to these tools.  That said, it is not
  complete yet so all development efforts should go towards it.

* If GDB is installed, atf-run dumps the stack trace of crashing test
  programs in an attempt to aid debugging.  Contributed by Antti Kantee.

* Reverted default timeout change in previous release and reset its value
  to 5 minutes.  This was causing several issues, specially when running
  the existing NetBSD test suite in qemu.

* Fixed the 'match' output checker in atf-check to properly validate the
  last line of a file even if it does not have a newline.

* Added the ATF_REQUIRE_IN and ATF_REQUIRE_NOT_IN macros to atf-c++ to
  check for the presence (or lack thereof) of an element in a collection.

* PR bin/44176: Fixed a race condition in atf-run that would crash atf-run
  when the cleanup of a test case triggered asynchronous modifications to
  its work directory (e.g. killing a daemon process that cleans up a pid
  file in the work directory).

* PR bin/44301: Fixed the sample XSLT file to report bogus test programs
  instead of just listing them as having 0 test cases.


(jmmv)
diff -r1.15 -r1.16 pkgsrc/devel/atf/Makefile
diff -r1.14 -r1.15 pkgsrc/devel/atf/PLIST
diff -r1.12 -r1.13 pkgsrc/devel/atf/distinfo

cvs diff -r1.15 -r1.16 pkgsrc/devel/atf/Makefile (expand / switch to context diff)
--- pkgsrc/devel/atf/Makefile 2010/11/07 13:41:14 1.15
+++ pkgsrc/devel/atf/Makefile 2011/03/31 16:30:11 1.16
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.15 2010/11/07 13:41:14 jmmv Exp $
+# $NetBSD: Makefile,v 1.16 2011/03/31 16:30:11 jmmv Exp $
 #
 
-DISTNAME=	atf-0.12
+DISTNAME=	atf-0.13
 CATEGORIES=	devel
-MASTER_SITES=	ftp://ftp.NetBSD.org/pub/NetBSD/misc/jmmv/atf/0.12/
+MASTER_SITES=	ftp://ftp.NetBSD.org/pub/NetBSD/misc/jmmv/atf/0.13/
 
 MAINTAINER=	jmmv@NetBSD.org
 HOMEPAGE=	http://www.NetBSD.org/~jmmv/atf/

cvs diff -r1.14 -r1.15 pkgsrc/devel/atf/PLIST (expand / switch to context diff)
--- pkgsrc/devel/atf/PLIST 2010/11/07 13:41:14 1.14
+++ pkgsrc/devel/atf/PLIST 2011/03/31 16:30:11 1.15
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.14 2010/11/07 13:41:14 jmmv Exp $
+@comment $NetBSD: PLIST,v 1.15 2011/03/31 16:30:11 jmmv Exp $
 bin/atf-config
 bin/atf-report
 bin/atf-run
@@ -52,12 +52,15 @@
 share/xml/atf/tests-results.dtd
 share/xsl/atf/tests-results.xsl
 tests/atf/Atffile
+tests/atf/Kyuafile
 tests/atf/atf-c++/Atffile
+tests/atf/atf-c++/Kyuafile
 tests/atf/atf-c++/atf_c++_test
 tests/atf/atf-c++/build_test
 tests/atf/atf-c++/check_test
 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/env_test
 tests/atf/atf-c++/detail/exceptions_test
@@ -74,11 +77,13 @@
 tests/atf/atf-c++/tests_test
 tests/atf/atf-c++/utils_test
 tests/atf/atf-c/Atffile
+tests/atf/atf-c/Kyuafile
 tests/atf/atf-c/atf_c_test
 tests/atf/atf-c/build_test
 tests/atf/atf-c/check_test
 tests/atf/atf-c/config_test
 tests/atf/atf-c/detail/Atffile
+tests/atf/atf-c/detail/Kyuafile
 tests/atf/atf-c/detail/dynstr_test
 tests/atf/atf-c/detail/env_test
 tests/atf/atf-c/detail/fs_test
@@ -98,14 +103,17 @@
 tests/atf/atf-c/tp_test
 tests/atf/atf-c/utils_test
 tests/atf/atf-config/Atffile
+tests/atf/atf-config/Kyuafile
 tests/atf/atf-config/integration_test
 tests/atf/atf-report/Atffile
+tests/atf/atf-report/Kyuafile
 tests/atf/atf-report/fail_helper
 tests/atf/atf-report/integration_test
 tests/atf/atf-report/misc_helpers
 tests/atf/atf-report/pass_helper
 tests/atf/atf-report/reader_test
 tests/atf/atf-run/Atffile
+tests/atf/atf-run/Kyuafile
 tests/atf/atf-run/atffile_test
 tests/atf/atf-run/bad_metadata_helper
 tests/atf/atf-run/config_test
@@ -122,6 +130,7 @@
 tests/atf/atf-run/user_test
 tests/atf/atf-run/zero_tcs_helper
 tests/atf/atf-sh/Atffile
+tests/atf/atf-sh/Kyuafile
 tests/atf/atf-sh/atf-check_test
 tests/atf/atf-sh/atf_check_test
 tests/atf/atf-sh/config_test
@@ -131,6 +140,7 @@
 tests/atf/atf-sh/tc_test
 tests/atf/atf-sh/tp_test
 tests/atf/test-programs/Atffile
+tests/atf/test-programs/Kyuafile
 tests/atf/test-programs/c_helpers
 tests/atf/test-programs/config_test
 tests/atf/test-programs/cpp_helpers

cvs diff -r1.12 -r1.13 pkgsrc/devel/atf/distinfo (expand / switch to context diff)
--- pkgsrc/devel/atf/distinfo 2010/11/07 13:41:14 1.12
+++ pkgsrc/devel/atf/distinfo 2011/03/31 16:30:11 1.13
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.12 2010/11/07 13:41:14 jmmv Exp $
+$NetBSD: distinfo,v 1.13 2011/03/31 16:30:11 jmmv Exp $
 
-SHA1 (atf-0.12.tar.gz) = 6dd0988d44ed76b7d15e53978e7aec043baa9010
+SHA1 (atf-0.13.tar.gz) = cc31cd0b58015e1bc581792c347e5d4588f4a475
-RMD160 (atf-0.12.tar.gz) = 0fa6a840598c5eba89fc74ca69fca94b993244ea
+RMD160 (atf-0.13.tar.gz) = 0e76d1876d61a7edb21a006723ce0327c82edead
-Size (atf-0.12.tar.gz) = 605664 bytes
+Size (atf-0.13.tar.gz) = 613264 bytes