Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/atf Adjust reachover build files after import o...



details:   https://anonhg.NetBSD.org/src/rev/cb0cc795a9d6
branches:  trunk
changeset: 758541:cb0cc795a9d6
user:      jmmv <jmmv%NetBSD.org@localhost>
date:      Sun Nov 07 17:46:45 2010 +0000

description:
Adjust reachover build files after import of atf-0.12.

diffstat:

 external/bsd/atf/etc/atf/Makefile           |   4 ++--
 external/bsd/atf/etc/atf/NetBSD.conf        |   7 ++-----
 external/bsd/atf/etc/atf/common.conf        |  11 +++++++++++
 external/bsd/atf/lib/libatf-c++/Makefile    |   4 ++--
 external/bsd/atf/lib/libatf-c/Makefile      |   4 ++--
 external/bsd/atf/lib/libatf-c/bconfig.h     |  15 +++------------
 external/bsd/atf/tests/atf/atf-run/Makefile |   7 ++++---
 7 files changed, 26 insertions(+), 26 deletions(-)

diffs (144 lines):

diff -r efc19042ffb3 -r cb0cc795a9d6 external/bsd/atf/etc/atf/Makefile
--- a/external/bsd/atf/etc/atf/Makefile Sun Nov 07 17:45:21 2010 +0000
+++ b/external/bsd/atf/etc/atf/Makefile Sun Nov 07 17:46:45 2010 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.2 2010/06/04 08:33:40 jmmv Exp $
+# $NetBSD: Makefile,v 1.3 2010/11/07 17:46:45 jmmv Exp $
 
 .include <bsd.own.mk>
 
 SRCDIR=                ${NETBSDSRCDIR}/external/bsd/atf/dist
 .PATH:         ${SRCDIR}/atf-run/sample
 
-CONFIGFILES=   NetBSD.conf atf-run.hooks
+CONFIGFILES=   NetBSD.conf atf-run.hooks common.conf
 FILESDIR=      /etc/atf
 FILESMODE=     644
 
diff -r efc19042ffb3 -r cb0cc795a9d6 external/bsd/atf/etc/atf/NetBSD.conf
--- a/external/bsd/atf/etc/atf/NetBSD.conf      Sun Nov 07 17:45:21 2010 +0000
+++ b/external/bsd/atf/etc/atf/NetBSD.conf      Sun Nov 07 17:46:45 2010 +0000
@@ -7,8 +7,5 @@
 # details on the NetBSD test suite.
 #
 
-# When running the test suite as root, some tests require to switch to
-# an unprivileged user to perform extra checks.  Set this variable to
-# the user you want to use in those cases.  If not set, those tests will
-# be skipped.
-#unprivileged-user = "nobody"
+#variable1 = value1
+#variable2 = value2
diff -r efc19042ffb3 -r cb0cc795a9d6 external/bsd/atf/etc/atf/common.conf
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/atf/etc/atf/common.conf      Sun Nov 07 17:46:45 2010 +0000
@@ -0,0 +1,11 @@
+Content-Type: application/X-atf-config; version="1"
+
+#
+# Sample configuration file for properties affecting all test suites.
+#
+
+# When running the test suite as root, some tests require to switch to
+# an unprivileged user to perform extra checks.  Set this variable to
+# the user you want to use in those cases.  If not set, those tests will
+# be skipped.
+unprivileged-user = "_atf"
diff -r efc19042ffb3 -r cb0cc795a9d6 external/bsd/atf/lib/libatf-c++/Makefile
--- a/external/bsd/atf/lib/libatf-c++/Makefile  Sun Nov 07 17:45:21 2010 +0000
+++ b/external/bsd/atf/lib/libatf-c++/Makefile  Sun Nov 07 17:46:45 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2010/10/20 09:20:10 jmmv Exp $
+# $NetBSD: Makefile,v 1.6 2010/11/07 17:46:46 jmmv Exp $
 
 NOLINT=                # defined
 
@@ -53,7 +53,7 @@
 
 realall: atf-c++.pc
 atf-c++.pc: Makefile atf-c++.pc.in
-       ${TOOL_SED} -e 's,__ATF_VERSION__,0.11,g' \
+       ${TOOL_SED} -e 's,__ATF_VERSION__,0.12,g' \
            -e 's,__CXX__,g++,g' \
            -e 's,__INCLUDEDIR__,/usr/include,g' \
            -e 's,__LIBDIR__,/usr/lib,g' \
diff -r efc19042ffb3 -r cb0cc795a9d6 external/bsd/atf/lib/libatf-c/Makefile
--- a/external/bsd/atf/lib/libatf-c/Makefile    Sun Nov 07 17:45:21 2010 +0000
+++ b/external/bsd/atf/lib/libatf-c/Makefile    Sun Nov 07 17:46:45 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2010/10/20 09:20:09 jmmv Exp $
+# $NetBSD: Makefile,v 1.8 2010/11/07 17:46:46 jmmv Exp $
 
 NOLINT=                # defined
 
@@ -84,7 +84,7 @@
 
 realall: atf-c.pc
 atf-c.pc: Makefile atf-c.pc.in
-       ${TOOL_SED} -e 's,__ATF_VERSION__,0.11,g' \
+       ${TOOL_SED} -e 's,__ATF_VERSION__,0.12,g' \
            -e 's,__CC__,gcc,g' \
            -e 's,__INCLUDEDIR__,/usr/include,g' \
            -e 's,__LIBDIR__,/usr/lib,g' \
diff -r efc19042ffb3 -r cb0cc795a9d6 external/bsd/atf/lib/libatf-c/bconfig.h
--- a/external/bsd/atf/lib/libatf-c/bconfig.h   Sun Nov 07 17:45:21 2010 +0000
+++ b/external/bsd/atf/lib/libatf-c/bconfig.h   Sun Nov 07 17:46:45 2010 +0000
@@ -1,15 +1,6 @@
 /* bconfig.h.  Generated from bconfig.h.in by configure.  */
 /* bconfig.h.in.  Generated from configure.ac by autoheader.  */
 
-/* Define to the path of chattr(1) if you have it */
-/* #undef CHATTR */
-
-/* Define to 1 if you have chattr(1) */
-/* #undef HAVE_CHATTR */
-
-/* Define to 1 if you have the `chflags' function. */
-#define HAVE_CHFLAGS 1
-
 /* Define to 1 if basename takes a constant pointer */
 /* #undef HAVE_CONST_BASENAME */
 
@@ -105,7 +96,7 @@
 #define PACKAGE_NAME "Automated Testing Framework"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "Automated Testing Framework 0.11"
+#define PACKAGE_STRING "Automated Testing Framework 0.12"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "atf"
@@ -114,10 +105,10 @@
 #define PACKAGE_URL "http://www.NetBSD.org/~jmmv/atf/";
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "0.11"
+#define PACKAGE_VERSION "0.12"
 
 /* Define to 1 if you have the ANSI C header files. */
 #define STDC_HEADERS 1
 
 /* Version number of package */
-#define VERSION "0.11"
+#define VERSION "0.12"
diff -r efc19042ffb3 -r cb0cc795a9d6 external/bsd/atf/tests/atf/atf-run/Makefile
--- a/external/bsd/atf/tests/atf/atf-run/Makefile       Sun Nov 07 17:45:21 2010 +0000
+++ b/external/bsd/atf/tests/atf/atf-run/Makefile       Sun Nov 07 17:46:45 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2010/10/20 09:20:12 jmmv Exp $
+# $NetBSD: Makefile,v 1.6 2010/11/07 17:46:46 jmmv Exp $
 
 .include <bsd.own.mk>
 
@@ -38,8 +38,9 @@
 SRCS.io_test=          io_test.cpp io.cpp signals.cpp test_helpers.cpp
 SRCS.requirements_test=        requirements_test.cpp requirements.cpp user.cpp
 SRCS.signals_test=     signals_test.cpp signals.cpp
-SRCS.test_program_test=        fs.cpp io.cpp signals.cpp test_helpers.cpp \
-                       test_program_test.cpp test-program.cpp timer.cpp
+SRCS.test_program_test=        fs.cpp io.cpp requirements.cpp signals.cpp \
+                       test_helpers.cpp test_program_test.cpp \
+                       test-program.cpp timer.cpp user.cpp
 SRCS.user_test=                user_test.cpp user.cpp
 
 .include <bsd.test.mk>



Home | Main Index | Thread Index | Old Index