You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@subversion.apache.org by Apache Hudson Server <hu...@hudson.zones.apache.org> on 2010/04/28 00:00:42 UTC

Build failed in Hudson: subversion-trunk-ubuntu #734

See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/734/changes>

Changes:

[hwright] Move a couple of svn_wc__db_t-handling functions to wc_db_pdh.c.

* subversion/libsvn_wc/wc_db_pdh.c
  (svn_wc__db_open, svn_wc__db_close): Moved here...

* subversion/libsvn_wc/wc_db.c
  (svn_wc__db_open, svn_wc__db_close): ...here.
  (svn_wc__db_close_many_wcroots): Un-staticize.

* subversion/libsvn_wc/wc_db_pdh.h
  (svn_wc__db_close_many_wcroots): Add declaration.

[hwright] Publicize a information-retrieving svn_wc__node_ function.  This function has
shown the need for widespread use, and is hereby promoted to public status.

* subversion/include/svn_wc.h
  (svn_wc_read_kind): New, moved from...

* subversion/include/private/svn_wc_private.h
  (svn_wc__node_get_kind): ...here.

* subversion/libsvn_wc/node.c
  (svn_wc__node_get_kind): Renamed to...
  (svn_wc_read_kind): ...this.

* subversion/svn/*
* subversion/libsvn_client/*
* subversion/libsvn_wc/*:
  Update callers.

------------------------------------------
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/include/svn_wc.h
U         subversion/include/private/svn_wc_private.h
U         subversion/libsvn_wc/status.c
U         subversion/libsvn_wc/wc_db_pdh.c
U         subversion/libsvn_wc/wc_db.c
U         subversion/libsvn_wc/wc_db_pdh.h
U         subversion/libsvn_wc/node.c
U         subversion/libsvn_client/switch.c
U         subversion/libsvn_client/externals.c
U         subversion/libsvn_client/repos_diff.c
U         subversion/libsvn_client/export.c
U         subversion/libsvn_client/status.c
U         subversion/libsvn_client/info.c
U         subversion/libsvn_client/merge.c
U         subversion/libsvn_client/patch.c
U         subversion/libsvn_client/prop_commands.c
U         subversion/libsvn_client/cat.c
U         subversion/libsvn_client/copy.c
U         subversion/libsvn_client/mergeinfo.c
U         subversion/libsvn_client/changelist.c
U         subversion/libsvn_client/update.c
U         subversion/libsvn_client/cleanup.c
U         subversion/libsvn_client/commit.c
U         subversion/svn/main.c
U         subversion/svn/propedit-cmd.c
At revision 938693
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson807035233546596969.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... ./configure: line 3547: echo: write error: Broken pipe
/bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #772

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/772/changes>

Changes:

[gstein] Clarify how the "hidden" concept is computed.

* subversion/libsvn_wc/entries.c:
  (svn_wc__entry_is_hidden): expand the code. add comments. add an
    assertion to demonstrate the restricted schedule values.

[gstein] Remove the file install code from the revert process, and simply queue an
OP_FILE_INSTALL work item to do it. This removes code duplication, but
also moves the file-install to *after* the database has stabilized from
the revert process. Specifically, when the now-removed code performed the
copy_and_translate() call, there was still a WORKING_NODE. When reading
either current or pristine props, the BASE props are thus shadowed, so the
wrong props would be fetched using wc_db calls (when using file-based
props, it works because it goes straight to the appropriate props file).

* subversion/libsvn_wc/workqueue.c:
  (copy_and_translate): removed. no longer used.
  (run_revert): gut all the working copy install code, and simply throw an
    OP_FILE_INSTALL work item into the queue.

------------------------------------------
[...truncated 545 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson4089271017683922528.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #771

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/771/changes>

Changes:

[pburba] Fix svndumpfilter_tests.py 5 'filter mergeinfo revs outside of dump stream'.

This change reapplies part of r927243 which was reverted in r936387
and is part of the issue #3020 group of fixes.

* subversion/libsvn_repos/load.c

  (parse_baton): New member oldest_old_rev.

  (renumber_mergeinfo_revs): Account for the fact that svn_merge_range_t's
   start_rev member is not inclusive when renumbering merge source revs.

  (close_revision): Set oldest_old_rev.

  (svn_repos_get_fs_build_parser2): Initialize oldest_old_rev.

* subversion/tests/cmdline/svndumpfilter_tests.py

  (filter_mergeinfo_revs_outside_of_dump_stream): Remove comment about
   XFail.

  (test_list): Remove XFail from
   filter_mergeinfo_revs_outside_of_dump_stream.

[neels] Fix ill var naming from r941094.

* subversion/libsvn_client/commit_util.c
  (harvest_committables):
    Rename sub-scoped copyfrom_url/_rev to node_*, to get rid of a compiler
    warning.

------------------------------------------
[...truncated 546 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson329766769214939767.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #770

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/770/changes>

Changes:

[pburba] A mergeinfo sanity check for svnadmin load: Stop r0 and r1 merge source revs.

* subversion/libsvn_repos/load.c

  (renumber_mergeinfo_revs): More issue #3020 work; just say no to invalid
   merge source revs.

[pburba] Adjust an issue #3020 so as to not expect mergeinfo with r1, that is invalid
by definition.

* subversion/tests/cmdline/svndumpfilter_tests.py

  (filter_mergeinfo_revs_outside_of_dump_stream): You can't merge -r0:1, so
   don't expect to see mergeinfo implying this.  Also update the XFail
   commentary.

------------------------------------------
[...truncated 548 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson7408945856053424811.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #769

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/769/changes>

Changes:

[pburba] More issue #3020 work, follow-up to r939709, svndumpfilter should not
consider revision 0 as a valid merge source revision.

* subversion/svndumpfilter/main.c

  (parse_baton_t): Tweak comment for oldest_original_rev.

  (output_revision): Don't set oldest_original_rev to r0.  We use
   oldest_original_rev strictly for mergeinfo stuffs and r0 has no valid
   meaning as a mergeinfo source rev.

[philip] * subversion/libsvn_client/commit_util.c
  (svn_client__harvest_committables): Replace use of an svn_wc_entry_t with
   a wc-ng call.

[philip] Followup to r941283.

* subversion/libsvn_client/commit_util.c
  (harvest_committables): Use the URL retrieved via wc-ng interface.

------------------------------------------
[...truncated 549 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson5723817000554554807.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #768

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/768/changes>

Changes:

[philip] * subversion/libsvn_client/commit_util.c
  (harvest_committables): Path is already an abspath, use wc-ng interface.

[julianfoad] Remove a duplicate statement introduced in r874068 (previously r33994).

* subversion/libsvn_client/commit_util.c
  (do_item_commit): Remove a duplicate transmit_prop_deltas call.

[julianfoad] Various local optimizations.  These opportunities became visible after
significantly optimizing other parts of svn.  The total savings for a 'svn
export' is almost 3 percent.

The largest savings can be attributed to the svndiff.c
changes (~1.5%) and the checksum parser (~1%).

* subversion/include/svn_delta.h
  (enum svn_delta_action): Document that these enum values must match the
    encoding values.

* subversion/libsvn_delta/compose_delta.c
  (search_offset_index, copy_source_ops): Use size_t to index memory. This
    is mainly a consistency fix but may actually result in slightly higher
    performance due to fewer conversions.

* subversion/libsvn_delta/svndiff.c
  (decode_file_offset, decode_size): Use slightly more efficient
    formulations.
  (decode_instruction): Directly map action codes, avoiding a 'switch'.

* subversion/libsvn_subr/checksum.c
  (svn_checksum_parse_hex): Eliminate calls to locale-aware CRT functions.
    At least with MS compilers, these are very expensive.

* subversion/libsvn_subr/stream.c
  (stream_readline): Hoist 'numbytes' from the loop: it is invariant until
    EOF.

Patch by: Stefan Fuhrmann <stefanfuhrmann{_AT_}alice-dsl.de>

------------------------------------------
[...truncated 650 lines...]
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/error-test.lo -c subversion/tests/libsvn_subr/error-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_fs_fs/fs-pack-test.lo -c subversion/tests/libsvn_fs_fs/fs-pack-test.c
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_fs/fs-test.lo -c subversion/tests/libsvn_fs/fs-test.c
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/hashdump-test.lo -c subversion/tests/libsvn_subr/hashdump-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_fs/locks-test.lo -c subversion/tests/libsvn_fs/locks-test.c
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/mergeinfo-test.lo -c subversion/tests/libsvn_subr/mergeinfo-test.c
subversion/tests/libsvn_subr/mergeinfo-test.c: In function ‘test_mergeinfo_intersect’:
subversion/tests/libsvn_subr/mergeinfo-test.c:557: warning: ‘svn_mergeinfo_intersect’ is deprecated (declared at ./subversion/include/svn_mergeinfo.h:302)
subversion/tests/libsvn_subr/mergeinfo-test.c: In function ‘test_remove_mergeinfo’:
subversion/tests/libsvn_subr/mergeinfo-test.c:1102: warning: ‘svn_mergeinfo_remove’ is deprecated (declared at ./subversion/include/svn_mergeinfo.h:218)
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/opt-test.lo -c subversion/tests/libsvn_subr/opt-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_diff/parse-diff-test.lo -c subversion/tests/libsvn_diff/parse-diff-test.c
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/path-test.lo -c subversion/tests/libsvn_subr/path-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_delta/random-test.lo -c subversion/tests/libsvn_delta/random-test.c
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_repos/dir-delta-editor.lo -c subversion/tests/libsvn_repos/dir-delta-editor.c
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_delete_entry’:
subversion/tests/libsvn_repos/dir-delta-editor.c:76: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_open_directory’:
subversion/tests/libsvn_repos/dir-delta-editor.c:111: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_add_directory’:
subversion/tests/libsvn_repos/dir-delta-editor.c:136: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_open_file’:
subversion/tests/libsvn_repos/dir-delta-editor.c:175: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_add_file’:
subversion/tests/libsvn_repos/dir-delta-editor.c:199: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_repos/repos-test.lo -c subversion/tests/libsvn_repos/repos-test.c
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/revision-test.lo -c subversion/tests/libsvn_subr/revision-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/skel-test.lo -c subversion/tests/libsvn_subr/skel-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/stream-test.lo -c subversion/tests/libsvn_subr/stream-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/string-test.lo -c subversion/tests/libsvn_subr/string-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_delta/svndiff-test.lo -c subversion/tests/libsvn_delta/svndiff-test.c
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/target-test.lo -c subversion/tests/libsvn_subr/target-test.c
subversion/tests/libsvn_subr/target-test.c: In function ‘condense_targets_tests_helper’:
subversion/tests/libsvn_subr/target-test.c:73: warning: ‘svn_path_internal_style’ is deprecated (declared at ./subversion/include/svn_path.h:71)
subversion/tests/libsvn_subr/target-test.c:81: warning: ‘svn_path_internal_style’ is deprecated (declared at ./subversion/include/svn_path.h:71)
subversion/tests/libsvn_subr/target-test.c: In function ‘test_path_condense_targets’:
subversion/tests/libsvn_subr/target-test.c:176: warning: ‘svn_path_condense_targets’ is deprecated (declared at ./subversion/include/svn_path.h:375)
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/time-test.lo -c subversion/tests/libsvn_subr/time-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/translate-test.lo -c subversion/tests/libsvn_subr/translate-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/utf-test.lo -c subversion/tests/libsvn_subr/utf-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_delta/vdelta-test.lo -c subversion/tests/libsvn_delta/vdelta-test.c
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_delta/window-test.lo -c subversion/tests/libsvn_delta/window-test.c
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson4260594620236178713.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #767

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/767/changes>

Changes:

[philip] * subversion/libsvn_client/commit_util.c
  (svn_client__harvest_committables): Pass the target path directly to
   bail_on_conflicted_ancestor.

[julianfoad] * subversion/libsvn_wc/wc_db.c
  (svn_wc__db_pristine_remove): Misc fixes. A follow-up to r940898.

Suggested by: gstein

------------------------------------------
[...truncated 548 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson4571991389886715554.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #766

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/766/changes>

Changes:

[neels] One less use of entry_t.

* subversion/libsvn_client/commit_util.c
  (harvest_committables):
    Use wc-ng instead of entry->schedule to determine whether a node's base
    needs deletion. Shift some variable declarations to indicate locality to
    their scopes. Another patch should align the duplicate calls to
    svn_wc__node_get_copyfrom_info(). Also rename two of the local vars
    shifted around (lose the "entry_" prefix).

------------------------------------------
[...truncated 547 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson8724348615001737738.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #765

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/765/changes>

Changes:

[hwright] * subversion/include/svn_client.h
  (svn_client_patch_func_t, svn_client_patch): Improve docstrings.

Suggested by: julianfoad

------------------------------------------
[...truncated 561 lines...]
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson1208983995650195394.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #764

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/764/changes>

Changes:

[hwright] Rename a number of path variables in the client patch code to use standard
absolute and relative path naming conventions.  No functional change.

* subversion/include/svn_client.h
  (svn_client_patch): Update path parameter as above.

* subversion/libsvn_client/patch.c:
  Update variable names as above throughout.

[gstein] * subversion/libsvn_wc/wc_db.c:
  (svn_wc__db_node_hidden): adjust some commentary on the operation of
    this function.

------------------------------------------
[...truncated 563 lines...]
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson24720641039971836.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #763

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/763/changes>

Changes:

[dannas] Fix wrongly choosen pools.

* subversion/libsvn_wc/util.c
  (svn_wc__status2_from_3): Use result_pool for the things that should 
    be returned and scratch_pool for the rest. Plain and simple.

Suggested by: gstein

------------------------------------------
[...truncated 544 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson5118223710074254090.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #762

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/762/changes>

Changes:

[julianfoad] Bump the WC format to add a '.svn/pristine' dir.

* subversion/libsvn_wc/upgrade.c
  (bump_to_17): Rename to 'bump_to_YYY'.
  (svn_wc__upgrade_sdb): Add an upgrade to format 17, that creates a
    '.svn/pristine' dir.

* subversion/libsvn_wc/wc-metadata.sql
  In comments, mention format 'YYY' instead of '17'.

[julianfoad] Add a function for deleting unreferenced pristine text files.

* subversion/libsvn_wc/wc_db.c,
  subversion/libsvn_wc/wc_db.h
  (svn_wc__db_pristine_remove): New function.

* subversion/libsvn_wc/wc-queries.sql
  (STMT_SELECT_ANY_PRISTINE_REFERENCE): New query.

* subversion/tests/libsvn_wc/pristine-store-test.c
  (pristine_write_read): Also trivially test a removal.

------------------------------------------
[...truncated 552 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson1695426531701495153.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #761

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/761/changes>

Changes:

[hwright] Add a callback to the public patch API, to allow consumers to collect
information about the patch targets.  This replaces the reject_tempfiles
and patched_tempfiles return parameters.

* subversion/tests/libsvn_client/client-test.c
  (patch_collection_baton, patch_collection_func): New.
  (test_patch): Use the baton to collect the tested information.

* subversion/svn/patch-cmd.c
  (svn_cl__patch): Remove the tempfiles, and don't implement a patch callback.

* subversion/include/svn_client.h
  (svn_client_patch_func_t): New.
  (svn_client_patch): Remove the output hashes, and add a callback and baton.

* subversion/libsvn_client/patch.c
  (init_patch_target): Pass through the REMOVE_TEMPFILES param.
  (apply_one_patch): Adjust parameters, and call the callback, where
    appropriate.
  (apply_patches_baton_t): Adjust members to refer to the updated parameters.
  (apply_patches): Pass through parameters to apply_one_patch().
  (svn_client_patch): Set the updated baton parameters.

------------------------------------------
[...truncated 564 lines...]
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson2888984492443540105.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #760

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/760/changes>

Changes:

[dannas] Remove field 'tree_conflict' from svn_wc_status3_t and replace the uses 
of it with status->conflicted.

* subversion/include/svn_wc.h
  (svn_wc_status3_t): Remove field 'tree_conflict'.

* subversion/libsvn_wc/util.c
  (svn_wc__status2_from_3): Initialize the tree_conflict field for 
    svn_wc_status2_t.

* subversion/libsvn_wc/status.c
  (assemble_status): Remove initializations for status->tree_conflict.
  (send_unversioned_item,
   svn_wc__is_sendable_status): Replace status->tree_conflict with 
    status->conflicted. Safe to do since we're checking unversioned items
    to be returned and there can't be any other kind of conflict on an
    unversioned path.
  (svn_wc_dup_status3): Don't duplicate status->tree_conflict

------------------------------------------
[...truncated 574 lines...]
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/cmdline/entries-dump.lo -c subversion/tests/cmdline/entries-dump.c
subversion/tests/cmdline/entries-dump.c: In function ‘entries_dump’:
subversion/tests/cmdline/entries-dump.c:70: warning: ‘svn_wc_locked’ is deprecated (declared at ./subversion/include/svn_wc.h:579)
subversion/tests/cmdline/entries-dump.c:71: warning: ‘svn_wc_adm_open3’ is deprecated (declared at ./subversion/include/svn_wc.h:276)
subversion/tests/cmdline/entries-dump.c:73: warning: ‘svn_wc_entries_read’ is deprecated (declared at ./subversion/include/svn_wc.h:3089)
subversion/tests/cmdline/entries-dump.c:130: warning: ‘svn_wc_adm_close2’ is deprecated (declared at ./subversion/include/svn_wc.h:519)
subversion/tests/cmdline/entries-dump.c: In function ‘main’:
subversion/tests/cmdline/entries-dump.c:171: warning: will never be executed
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson8523943612850422036.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #759

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/759/changes>

Changes:

[cmpilato] Expand svn_wc__node_get_repos_info() to be able to (optionally)
populate repos info for deleted nodes, too.

* subversion/include/private/svn_wc_private.h,
* subversion/libsvn_wc/node.c
  (svn_wc__node_get_repos_info): Add 'scan_deleted' parameter and handling.
 
* subversion/libsvn_client/externals.c,
* subversion/libsvn_client/merge.c,
* subversion/libsvn_client/mergeinfo.c,
* subversion/libsvn_client/ra.c,
* subversion/libsvn_client/util.c,
* subversion/libsvn_wc/update_editor.c
  Update calls to svn_wc__node_get_repos_info(), passing FALSE for
  'scan_deleted'.

* subversion/libsvn_client/info.c
  Update call to svn_wc__node_get_repos_info(), passing TRUE for
  'scan_deleted'.

[dannas] Add comment to describe why we only check for tree conflicts when setting
status->conflicted for unversioned paths.

It was the only scenario I could come up with and the only one, caught by the
testsuite.

* subversion/libsvn_wc/status.c
  (assemble_status): See above.

------------------------------------------
[...truncated 559 lines...]
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson5262018815437592057.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #758

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/758/changes>

Changes:

[pburba] Let the svndumpfilter_tests.py tests see the stderr results when running
svndumpfilter in non-quiet mode.

* subversion/tests/cmdline/svndumpfilter_tests.py

  (filter_and_return_output): Return stderr.

  (reflect_dropped_renumbered_revs,
   svndumpfilter_loses_mergeinfo,
   _simple_dumpfilter_test,
   filter_mergeinfo_revs_outside_of_dump_stream): Update callers of
   filter_and_return_output.

[cmpilato] Continue purging svn_wc_entry_t dependency from libsvn_client.

* subversion/include/private/svn_wc_private.h,
* subversion/libsvn_wc/node.c
  (svn_wc__node_get_translated_size): New.

* subversion/libsvn_client/info.c
  (build_info_for_entry): Use svn_wc__node_get_translated_size().

------------------------------------------
[...truncated 554 lines...]
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson8560015103393935471.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #757

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/757/changes>

Changes:

[neels] Count obstructed deletes as _is_status_deleted, also. Fix a call to
add_committable() that forgot to pass the URL along for obstructed nodes.

* subversion/libsvn_client/commit_util.c
  (harvest_committables): Pass URL to add_committable().

* subversion/libsvn_wc/node.c
  (svn_wc__node_is_status_deleted): Also count obstructed deletes as deleted.

[stsp] Revert additional pool lifetime requirements introduced in r937275.

* subversion/include/svn_subst.h,
  subversion/libsvn_subr/subst.c
  (svn_subst_stream_translated): Copy EOL_STR and KEYWORDS into
   RESULT_POOL to make sure they have sufficient lifetime, and remove
   pool lifetime restrictions for EOL_STR and KEYWORDS from docstring.

Suggested by: julianfoad
              gstein

[stsp] * subversion/libsvn_repos/repos.c
  (create_conf): Clearly explain the purpose of each valid value of the
   anon-access and auth-access options. Based on snippets from the SVN book.

------------------------------------------
[...truncated 552 lines...]
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/eol-test.lo -c subversion/tests/libsvn_subr/eol-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/stream-test.lo -c subversion/tests/libsvn_subr/stream-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/translate-test.lo -c subversion/tests/libsvn_subr/translate-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson7204049611479174244.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #756

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/756/changes>

Changes:

[neels] Fix r940102 to also work when the root copy target of a mixed-rev copy is an
ancestor that is further up than the direct parent. Plus it looks much better
like this.

* subversion/libsvn_wc/node.c
  (svn_wc__node_get_copyfrom_info):
    Instead of using the ORIGINAL_* values of the parent directly, rather
    recurse to (scanningly) find the COPYFROM_URL of the parent folder.

------------------------------------------
[...truncated 544 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson2333861216714680969.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #755

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/755/changes>

Changes:

[dannas] As part of WC-NG, use a node func for fetching a changelist instead of
reading from the entry field.

* subversion/svn/status-cmd.c
  (print_status): Use svn_wc__node_get_changelist() instead of checking 
    the 'entry' field of svn_wc_status3_t.

[dannas] Be less specific about conflict types that svn_wc_status3_t can detect.
We will probably have more conflict tyepds in the future.

Bert said on IRC: 
1.7 will most likely have 4 or 5 conflict types. I think we need
obstructions to allow updates to continue behind all conflicts, and maybe
somebody gets to marking patch conflicts. 

* subversion/include/svn_wc.h
  (svn_wc_status3_t): Change doc comment for field 'conflicted'.

Suggested by: rhuijben

------------------------------------------
[...truncated 573 lines...]
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/cmdline/entries-dump.lo -c subversion/tests/cmdline/entries-dump.c
subversion/tests/cmdline/entries-dump.c: In function ‘entries_dump’:
subversion/tests/cmdline/entries-dump.c:70: warning: ‘svn_wc_locked’ is deprecated (declared at ./subversion/include/svn_wc.h:579)
subversion/tests/cmdline/entries-dump.c:71: warning: ‘svn_wc_adm_open3’ is deprecated (declared at ./subversion/include/svn_wc.h:276)
subversion/tests/cmdline/entries-dump.c:73: warning: ‘svn_wc_entries_read’ is deprecated (declared at ./subversion/include/svn_wc.h:3089)
subversion/tests/cmdline/entries-dump.c:130: warning: ‘svn_wc_adm_close2’ is deprecated (declared at ./subversion/include/svn_wc.h:519)
subversion/tests/cmdline/entries-dump.c: In function ‘main’:
subversion/tests/cmdline/entries-dump.c:171: warning: will never be executed
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson3081250390182851726.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #754

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/754/changes>

Changes:

[dannas] Follow-up to r940111. Add doc comment to the new 'conflicted' field.

* subversion/include/svn_wc.h
  (svn_wc_status3_t): See above.

[dannas] Follow-up to r940111. Fix OUT parameters not beeing set by default.

* subversion/libsvn_wc/node.c
  (svn_wc__node_check_conflicts): Initialize all OUT parameters to FALSE.
    Constify cd.

* subversion/libsvn_wc/node.c
  (...): Update callers. They no longer need to do the initialization.

Suggested by: gstein

------------------------------------------
[...truncated 574 lines...]
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/cmdline/entries-dump.lo -c subversion/tests/cmdline/entries-dump.c
subversion/tests/cmdline/entries-dump.c: In function ‘entries_dump’:
subversion/tests/cmdline/entries-dump.c:70: warning: ‘svn_wc_locked’ is deprecated (declared at ./subversion/include/svn_wc.h:579)
subversion/tests/cmdline/entries-dump.c:71: warning: ‘svn_wc_adm_open3’ is deprecated (declared at ./subversion/include/svn_wc.h:276)
subversion/tests/cmdline/entries-dump.c:73: warning: ‘svn_wc_entries_read’ is deprecated (declared at ./subversion/include/svn_wc.h:3089)
subversion/tests/cmdline/entries-dump.c:130: warning: ‘svn_wc_adm_close2’ is deprecated (declared at ./subversion/include/svn_wc.h:519)
subversion/tests/cmdline/entries-dump.c: In function ‘main’:
subversion/tests/cmdline/entries-dump.c:171: warning: will never be executed
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson1558882913631985779.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #753

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/753/changes>

Changes:

[dannas] * subversion/include/svn_wc.h
  (svn_wc_conflicted_p3): Remove adm_access from doc comment, since
    it's not a parameter.

[dannas] A first step towards avoiding expensive computations involving conflicts
in the status code.

The idea is to have one single flag indicating if a path has any
conflicts. If the API users wants more information, they can get it
themselves. Two pros: The code will (hopefully) be faster and we get a
more unified grip on the conflict information. Earlier it has been
spread across status->text_status, status->prop_status and
status->tree_conflict.

* subversion/svn/cl.h
  (svn_cl__print_status,
  (svn_cl__print_status_xml): Add ctx parameter.

* subversion/svn/status.c
  (print_status): Add ctx parameter. Check status->conflicted and use wc
    funcs for fetching further information.
  svn_cl__print_status_xml,
  (svn_cl__print_status): Do an explicit check for tree conflicts
    instead of relying on fields in svn_wc_status3_t. 

* subversion/svn/status-cmd.c
  (print_status_normal_or_xml): Update callers to pass a ctx parameter.

* subversion/include/svn_wc.h
  (svn_wc_status3_t): Add conflicted field.

* subversion/include/private/svn_wc_private.h
  (svn_wc__node_check_conflicts): New.

* subversion/libsvn_wc/status.c
  (assemble_status): Initialize status->conflicted.

* subversion/libsvn_wc/node.c
  (svn_wc__node_check_conflicts): New.

[neels] Cosmetic.

* subversion/libsvn_client/commit_util.c
  (harvest_committables): Split var declarations onto one line each.

------------------------------------------
[...truncated 579 lines...]
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/cmdline/entries-dump.lo -c subversion/tests/cmdline/entries-dump.c
subversion/tests/cmdline/entries-dump.c: In function ‘entries_dump’:
subversion/tests/cmdline/entries-dump.c:70: warning: ‘svn_wc_locked’ is deprecated (declared at ./subversion/include/svn_wc.h:579)
subversion/tests/cmdline/entries-dump.c:71: warning: ‘svn_wc_adm_open3’ is deprecated (declared at ./subversion/include/svn_wc.h:276)
subversion/tests/cmdline/entries-dump.c:73: warning: ‘svn_wc_entries_read’ is deprecated (declared at ./subversion/include/svn_wc.h:3089)
subversion/tests/cmdline/entries-dump.c:130: warning: ‘svn_wc_adm_close2’ is deprecated (declared at ./subversion/include/svn_wc.h:519)
subversion/tests/cmdline/entries-dump.c: In function ‘main’:
subversion/tests/cmdline/entries-dump.c:171: warning: will never be executed
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson6082479749327134457.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #752

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/752/changes>

Changes:

[neels] One more step away from entry_t.

* subversion/libsvn_client/commit_util.c
  (harvest_committables, svn_client__harvest_committables):
    Use wc-ng to determine added state instead of entry_t.

Patch by: philip
Tweaked by: neels (cosmetic)

[neels] * subversion/libsvn_wc/node.c
  (svn_wc__node_get_copyfrom_info):
    Model IS_COPY_TARGET the way wc-1 returned entry->copyfrom_url. Current
    code still expects mixed-revision copies to appear as one copy with a
    single root (see comment).

Suggested by: gstein

------------------------------------------
[...truncated 545 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson7492731513531845990.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #751

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/751/changes>

Changes:

[dannas] Use local_abspath instead of path in doc comment to match the name in the
declaration.

* subversion/include/svn_wc.h
  (svn_wc_conflicted_p3): See above.

------------------------------------------
[...truncated 572 lines...]
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_client/client-test.lo -c subversion/tests/libsvn_client/client-test.c
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/cmdline/entries-dump.lo -c subversion/tests/cmdline/entries-dump.c
subversion/tests/cmdline/entries-dump.c: In function ‘entries_dump’:
subversion/tests/cmdline/entries-dump.c:70: warning: ‘svn_wc_locked’ is deprecated (declared at ./subversion/include/svn_wc.h:579)
subversion/tests/cmdline/entries-dump.c:71: warning: ‘svn_wc_adm_open3’ is deprecated (declared at ./subversion/include/svn_wc.h:276)
subversion/tests/cmdline/entries-dump.c:73: warning: ‘svn_wc_entries_read’ is deprecated (declared at ./subversion/include/svn_wc.h:3089)
subversion/tests/cmdline/entries-dump.c:130: warning: ‘svn_wc_adm_close2’ is deprecated (declared at ./subversion/include/svn_wc.h:519)
subversion/tests/cmdline/entries-dump.c: In function ‘main’:
subversion/tests/cmdline/entries-dump.c:171: warning: will never be executed
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson2603368991102939139.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #750

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/750/changes>

Changes:

[cmpilato] * subversion/include/private/svn_wc_private.h,
* subversion/libsvn_wc/node.c
  (svn_wc__node_get_base_checksum): New.

* subversion/libsvn_client/info.c
  (build_info_for_entry): Trade more svn_wc_entry_t stuffs for WC-NG
    node stuffs.  Woot!

------------------------------------------
[...truncated 552 lines...]
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson6815920248010918533.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #749

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/749/changes>

Changes:

[pburba] More issue #3020 work.  Overload svndumpfilter --skip-missing-merge-sources
option to also removes mergeinfo that predates the starting revision of
the dump stream.

See http://svn.haxx.se/dev/archive-2010-04/0475.shtml 

* subversion/svndumpfilter/main.c

  (parse_baton_t): New member oldest_original_rev.

  (output_revision): Set oldest_original_rev.

  (adjust_mergeinfo): If --skip-missing-merge-sources is specified then toss
   mergeinfo older than oldest_original_rev.

  (parse_baton_initialize): Initialize oldest_original_rev.

[cmpilato] Expand the scope of a lock-related WC-NG node API to increase its
utility, and then use it some more.

* subversion/include/private/svn_wc_private.h,
* subversion/libsvn_wc/node.c
  (svn_wc__node_get_lock_info): Was svn_wc__node_get_lock_token().
    Add 'lock_owner', 'lock_comment, and 'lock_date' params.  Make
    all return params optional.

* subversion/libsvn_client/commit_util.c
  (add_lock_token, harvest_committables): Track renamed/modified function.

* subversion/libsvn_client/locking_commands.c
  (organize_lock_targets): Track renamed/modified function.

* subversion/libsvn_client/info.c
  (build_info_for_entry): Use svn_wc__node_get_lock_token() to fetch
    lock information instead of culling it out of an svn_wc_entry_t.

[cmpilato] * subversion/libsvn_client/copy.c
  (repos_to_wc_copy_locked): Use WC-NG functions instead of
    svn_wc_entry_t stuffs to avoid bogus copy destinations.

------------------------------------------
[...truncated 556 lines...]
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson2454507894959894908.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #748

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/748/changes>

Changes:

[cmpilato] * subversion/include/private/svn_wc_private.h
  (svn_wc__node_is_status_absent, svn_wc__node_is_status_obstructed): Fix
    docstring copy-n-paste-o's.

------------------------------------------
[...truncated 550 lines...]
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson3637350710425068665.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #747

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/747/changes>

Changes:

[philip] * subversion/libsvn_client/commit_util.c
  (harvest_committables): Use wc-ng functions to get lock tokens.

[julianfoad] * contrib/server-side/fsfsverify.py
  Fix the usage message in the help output.

------------------------------------------
[...truncated 545 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson4324280697188218262.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #746

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/746/changes>

Changes:

[neels] Fix merge behaviour for absent nodes, broken by r939150. Now,
merge_authz_tests.py 1 passes again. Also tweak a path to local_abspath.

* subversion/libsvn_client/merge.c
  (obstructed_or_missing):
    Return absent nodes as 'missing'. Tweak: rather use LOCAL_ABSPATH to
    check the file system node kind. Also tweak comment.

* subversion/tests/cmdline/merge_authz_tests.py
  (mergeinfo_and_skipped_paths):
    Unmark XFAIL. Above changes fix the missing "skipped" notification.

[pburba] A minor dumpfilter optimization.

* subversion/svndumpfilter/main.c

  (parse_baton_initialize): Don't waste time attempting to renumber
   revisions if nothing can possibly be renumbered, i.e. ignore
   svndumpfilter --renumber-revs if --drop-empty-revs is not also
   specified.  See http://svn.haxx.se/dev/archive-2010-04/0621.shtml

[cmpilato] Fix issue #3623, a bug with foreign repository merges not carrying
property changes for merge-added files.

* subversion/libsvn_client/merge.c
  (merge_file_added): Rework logic for more explicit handling of new
    contents and properties that come through this callback.  When handling
    adds from foreign repositories, install the props and contents as
    *working* data (against empty base data), just like a regular
    schedule-add would be handled.

Reported by: Tobias Bading <tbading{_AT_}web.de>

[cmpilato] Extend a test to address the concerns of issue #3623.

* subversion/tests/cmdline/merge_tests.py
  (foreign_repos): Extend this test a bit to really verify that what
    was merged from a foreign repos, and committed, is *really* what we
    expected.

[pburba] Prevent svnadmin loads of partial dumps from possibly creating invalid
mergeinfo where the start range > end range.

* subversion/libsvn_repos/load.c

  (renumber_mergeinfo_revs): Yet another fix for issue #3020; if we can't
   remap a mergeinfos start rev, then don't attempt to remap the end
   range.  We might succeed and load invalid mergeinfo.

[philip] * subversion/libsvn_client/commit_util.c
  (harvest_committables): Reduce use of svn_wc_entry_t prior to removal,
   only pass non-NULL URL in COPY_MODE.
  (svn_client__harvest_committables): Tweak call.
  (add_committable): Add return type, change assert to SVN_ERR_ASSERT.

[pburba] Follow-up to r939329, new test was intended to be XFail.

* subversion/tests/cmdline/svndumpfilter_tests.py

  (filter_mergeinfo_revs_outside_of_dump_stream): Set as XFail.

[pburba] Add a new svndumpfilter test for issue #3020.

* subversion/tests/cmdline/svndumpfilter_tests.py

  (filter_mergeinfo_revs_outside_of_dump_stream): New.  This is largely
   based on the the old svnadmin test drop_mergeinfo_outside_of_dump_stream
   which was removed in
   http://svn.apache.org/viewvc?view=revision&revision=938999

  (test_list): Add XFailing filter_mergeinfo_revs_outside_of_dump_stream.

* subversion/tests/cmdline/svndumpfilter_tests_data/
  mergeinfo_included_partial.dump: New.

[neels] * subversion/tests/cmdline/merge_authz_tests.py (mergeinfo_and_skipped_paths):
    Mark this test XFAIL. Will hopefully fix this tonight / this week.
    This is related to r939150.

------------------------------------------
[...truncated 551 lines...]
subversion/svnadmin/main.c:736: warning: ‘svn_repos_dump_fs2’ is deprecated (declared at ./subversion/include/svn_repos.h:2230)
subversion/svnadmin/main.c: In function ‘subcommand_verify’:
subversion/svnadmin/main.c:1214: warning: ‘svn_repos_verify_fs’ is deprecated (declared at ./subversion/include/svn_repos.h:2167)
cd subversion/svnadmin && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnadmin  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svndumpfilter/main.lo -c subversion/svndumpfilter/main.c
cd subversion/svndumpfilter && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndumpfilter  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnlook/main.lo -c subversion/svnlook/main.c
subversion/svnlook/main.c: In function ‘display_prop_diffs’:
subversion/svnlook/main.c:841: warning: format not a string literal, argument types not checked
cd subversion/svnlook && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnlook  main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_diff/libsvn_diff-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/cyrus_auth.lo -c subversion/svnserve/cyrus_auth.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/main.lo -c subversion/svnserve/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/serve.lo -c subversion/svnserve/serve.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnserve/winservice.lo -c subversion/svnserve/winservice.c
cd subversion/svnserve && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnserve  cyrus_auth.lo log-escape.lo main.lo serve.lo winservice.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/main.lo -c subversion/svnsync/main.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnsync/sync.lo -c subversion/svnsync/sync.c
cd subversion/svnsync && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnsync  main.lo sync.lo ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/svnversion/main.lo -c subversion/svnversion/main.c
cd subversion/svnversion && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svnversion  main.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/auth-test.lo -c subversion/tests/libsvn_subr/auth-test.c
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/svn_test_main.lo -c subversion/tests/svn_test_main.c
subversion/tests/svn_test_main.c: In function ‘main’:
subversion/tests/svn_test_main.c:444: warning: will never be executed
cd subversion/tests && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o libsvn_test-1.la  svn_test_fs.lo svn_test_main.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
libtool: link: warning: `/usr/lib64/libexpat.la' seems to be moved
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o auth-test  auth-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/cache-test.lo -c subversion/tests/libsvn_subr/cache-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o cache-test  cache-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o checksum-test  checksum-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_client && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o client-test  client-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o compat-test  compat-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o config-test  config-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/db-test.lo -c subversion/tests/libsvn_wc/db-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o db-test  db-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o diff-diff3-test  diff-diff3-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o dirent_uri-test  dirent_uri-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/entries-compat.lo -c subversion/tests/libsvn_wc/entries-compat.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-compat-test  entries-compat.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/cmdline && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o entries-dump  entries-dump.lo ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o eol-test  eol-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o error-test  error-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-pack-test  fs-pack-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o fs-test  fs-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o hashdump-test  hashdump-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_fs && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o locks-test  locks-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson7864766155378668488.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #745

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/745/>

------------------------------------------
[...truncated 702 lines...]
subversion/tests/libsvn_subr/mergeinfo-test.c: In function ‘test_remove_mergeinfo’:
subversion/tests/libsvn_subr/mergeinfo-test.c:1102: warning: ‘svn_mergeinfo_remove’ is deprecated (declared at ./subversion/include/svn_mergeinfo.h:218)
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o mergeinfo-test  mergeinfo-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/opt-test.lo -c subversion/tests/libsvn_subr/opt-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o opt-test  opt-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_diff/parse-diff-test.lo -c subversion/tests/libsvn_diff/parse-diff-test.c
cd subversion/tests/libsvn_diff && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o parse-diff-test  parse-diff-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_diff/libsvn_diff-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/path-test.lo -c subversion/tests/libsvn_subr/path-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o path-test  path-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/pristine-store-test.lo -c subversion/tests/libsvn_wc/pristine-store-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o pristine-store-test  pristine-store-test.lo ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_ra_local/ra-local-test.lo -c subversion/tests/libsvn_ra_local/ra-local-test.c
cd subversion/tests/libsvn_ra_local && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o ra-local-test  ra-local-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1  
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_delta/random-test.lo -c subversion/tests/libsvn_delta/random-test.c
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o random-test  random-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_repos/dir-delta-editor.lo -c subversion/tests/libsvn_repos/dir-delta-editor.c
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_delete_entry’:
subversion/tests/libsvn_repos/dir-delta-editor.c:76: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_open_directory’:
subversion/tests/libsvn_repos/dir-delta-editor.c:111: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_add_directory’:
subversion/tests/libsvn_repos/dir-delta-editor.c:136: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_open_file’:
subversion/tests/libsvn_repos/dir-delta-editor.c:175: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
subversion/tests/libsvn_repos/dir-delta-editor.c: In function ‘test_add_file’:
subversion/tests/libsvn_repos/dir-delta-editor.c:199: warning: ‘svn_path_join’ is deprecated (declared at ./subversion/include/svn_path.h:108)
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_repos/repos-test.lo -c subversion/tests/libsvn_repos/repos-test.c
cd subversion/tests/libsvn_repos && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o repos-test  dir-delta-editor.lo repos-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_repos/libsvn_repos-1.la ../../../subversion/libsvn_fs/libsvn_fs-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/revision-test.lo -c subversion/tests/libsvn_subr/revision-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o revision-test  revision-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/skel-test.lo -c subversion/tests/libsvn_subr/skel-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o skel-test  skel-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/stream-test.lo -c subversion/tests/libsvn_subr/stream-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o stream-test  stream-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/string-test.lo -c subversion/tests/libsvn_subr/string-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o string-test  string-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_delta/svndiff-test.lo -c subversion/tests/libsvn_delta/svndiff-test.c
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o svndiff-test  svndiff-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/target-test.lo -c subversion/tests/libsvn_subr/target-test.c
subversion/tests/libsvn_subr/target-test.c: In function ‘condense_targets_tests_helper’:
subversion/tests/libsvn_subr/target-test.c:73: warning: ‘svn_path_internal_style’ is deprecated (declared at ./subversion/include/svn_path.h:71)
subversion/tests/libsvn_subr/target-test.c:81: warning: ‘svn_path_internal_style’ is deprecated (declared at ./subversion/include/svn_path.h:71)
subversion/tests/libsvn_subr/target-test.c: In function ‘test_path_condense_targets’:
subversion/tests/libsvn_subr/target-test.c:176: warning: ‘svn_path_condense_targets’ is deprecated (declared at ./subversion/include/svn_path.h:375)
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o target-test  target-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/time-test.lo -c subversion/tests/libsvn_subr/time-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o time-test  time-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/translate-test.lo -c subversion/tests/libsvn_subr/translate-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o translate-test  translate-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_wc/tree-conflict-data-test.lo -c subversion/tests/libsvn_wc/tree-conflict-data-test.c
cd subversion/tests/libsvn_wc && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o tree-conflict-data-test  tree-conflict-data-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_subr/utf-test.lo -c subversion/tests/libsvn_subr/utf-test.c
cd subversion/tests/libsvn_subr && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o utf-test  utf-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_delta/vdelta-test.lo -c subversion/tests/libsvn_delta/vdelta-test.c
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o vdelta-test  vdelta-test.lo ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/local/apr/build-1/libtool --tag=CC --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG  -I./subversion/include -I./subversion -I/usr/local/apr/include/apr-1   -I/usr/local/apr/include/apr-1  -static  -o subversion/tests/libsvn_delta/window-test.lo -c subversion/tests/libsvn_delta/window-test.c
cd subversion/tests/libsvn_delta && /usr/local/apr/build-1/libtool --tag=CC --silent --mode=link gcc -static  -Wold-style-definition -Wdeclaration-after-statement -Wpointer-arith -Wwrite-strings -Wshadow -ansi -Wall -Wformat=2 -Wunused -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wno-multichar -Wredundant-decls -Wnested-externs -Wunreachable-code -Winline -Wno-long-long -g -g -pthread -Werror=implicit-function-declaration  -DSVN_DEBUG -DAP_DEBUG   -rpath /usr/local/lib  -o window-test  window-test.lo ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la -L/usr/local/apr/lib -laprutil-1 -L/usr/local/apr/lib -lapr-1 
/usr/bin/msgfmt -c -o subversion/po/de.mo subversion/po/de.po
/usr/bin/msgfmt -c -o subversion/po/es.mo subversion/po/es.po
/usr/bin/msgfmt -c -o subversion/po/fr.mo subversion/po/fr.po
/usr/bin/msgfmt -c -o subversion/po/it.mo subversion/po/it.po
/usr/bin/msgfmt -c -o subversion/po/ja.mo subversion/po/ja.po
/usr/bin/msgfmt -c -o subversion/po/ko.mo subversion/po/ko.po
/usr/bin/msgfmt -c -o subversion/po/nb.mo subversion/po/nb.po
/usr/bin/msgfmt -c -o subversion/po/pl.mo subversion/po/pl.po
/usr/bin/msgfmt -c -o subversion/po/pt_BR.mo subversion/po/pt_BR.po
/usr/bin/msgfmt -c -o subversion/po/sv.mo subversion/po/sv.po
/usr/bin/msgfmt -c -o subversion/po/zh_CN.mo subversion/po/zh_CN.po
/usr/bin/msgfmt -c -o subversion/po/zh_TW.mo subversion/po/zh_TW.po
[subversion-trunk-ubuntu] $ /bin/bash /tmp/hudson1409847848716179668.sh
Running tests in auth-test [1/77]...................success
Running tests in cache-test [2/77]..................success
Running tests in checksum-test [3/77]...............success
Running tests in client-test [4/77].................FAILURE
Running tests in compat-test [5/77].................success
Running tests in config-test [6/77].................success
Running tests in db-test [7/77].....................FAILURE
Running tests in diff-diff3-test [8/77].............success
Running tests in dirent_uri-test [9/77].............success
Running tests in entries-compat-test [10/77]........FAILURE
Running tests in eol-test [11/77]...................success
Running tests in error-test [12/77].................success
Running tests in fs-pack-test [13/77]...............FAILURE
Running tests in fs-test [14/77]....................FAILURE
Running tests in hashdump-test [15/77]..............success
Running tests in locks-test [16/77].................FAILURE
Running tests in mergeinfo-test [17/77].............success
Running tests in opt-test [18/77]...................success
Running tests in parse-diff-test [19/77]............success
Running tests in path-test [20/77]..................success
Running tests in pristine-store-test [21/77]........FAILURE
Running tests in ra-local-test [22/77]..............FAILURE
Running tests in random-test [23/77]................success
Running tests in repos-test [24/77].................FAILURE
Running tests in revision-test [25/77]..............success
Running tests in skel-test [26/77]..................success
Running tests in stream-test [27/77]................success
Running tests in string-test [28/77]................success
Running tests in target-test [29/77]................success
Running tests in time-test [30/77]..................success
Running tests in translate-test [31/77].............success
Running tests in tree-conflict-data-test [32/77]....success
Running tests in utf-test [33/77]...................success
Running tests in window-test [34/77]................success
Running tests in authz_tests.py [35/77].............FAILURE
Running tests in autoprop_tests.py [36/77]..........FAILURE
Running tests in basic_tests.py [37/77].............FAILURE
Running tests in blame_tests.py [38/77].............FAILURE
Running tests in cat_tests.py [39/77]...............FAILURE
Running tests in changelist_tests.py [40/77]........FAILURE
Running tests in checkout_tests.py [41/77]..........FAILURE
Running tests in commit_tests.py [42/77]............FAILURE
Running tests in copy_tests.py [43/77]..............FAILURE
Running tests in depth_tests.py [44/77].............FAILURE
Running tests in diff_tests.py [45/77]..............FAILURE
Running tests in entries_tests.py [46/77]...........FAILURE
Running tests in export_tests.py [47/77]............FAILURE
Running tests in externals_tests.py [48/77].........FAILURE
Running tests in getopt_tests.py [49/77]............FAILURE
Running tests in history_tests.py [50/77]...........FAILURE
Running tests in import_tests.py [51/77]............FAILURE
Running tests in info_tests.py [52/77]..............FAILURE
Running tests in lock_tests.py [53/77]..............FAILURE
Running tests in log_tests.py [54/77]...............FAILURE
Running tests in merge_authz_tests.py [55/77].......FAILURE
Running tests in merge_tests.py [56/77].............FAILURE
Running tests in mergeinfo_tests.py [57/77].........FAILURE
Running tests in obliterate_tests.py [58/77]........FAILURE
Running tests in patch_tests.py [59/77].............FAILURE
Running tests in prop_tests.py [60/77]..............FAILURE
Running tests in resolve_tests.py [61/77]...........FAILURE
Running tests in resolved_tests.py [62/77]..........FAILURE
Running tests in revert_tests.py [63/77]............FAILURE
Running tests in schedule_tests.py [64/77]..........FAILURE
Running tests in special_tests.py [65/77]...........FAILURE
Running tests in stat_tests.py [66/77]..............FAILURE
Running tests in svnadmin_tests.py [67/77]..........FAILURE
Running tests in svndumpfilter_tests.py [68/77].....FAILURE
Running tests in svnlook_tests.py [69/77]...........FAILURE
Running tests in svnsync_tests.py [70/77]...........FAILURE
Running tests in svnversion_tests.py [71/77]........FAILURE
Running tests in switch_tests.py [72/77]............FAILURE
Running tests in trans_tests.py [73/77].............FAILURE
Running tests in tree_conflict_tests.py [74/77].....FAILURE
Running tests in update_tests.py [75/77]............FAILURE
Running tests in upgrade_tests.py [76/77]...........FAILURE
Running tests in utf8_tests.py [77/77]..............FAILURE
At least one test was SKIPPED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
SKIP:  cache-test 2: basic memcache svn_cache test
SKIP:  cache-test 3: memcache svn_cache with very long keys
At least one test XFAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
XFAIL: fs-test 18: merging commit
       [[needs to be written to match new merge() algorithm expectations]]
XFAIL: fs-test 36: obliterate 1
       [[obliterate is in development]]
XFAIL: locks-test 9: able to reserve a name (lock non-existent path)
XFAIL: locks-test 10: directory locks (kinda)
XFAIL: stream-test 10: test stream seeking for translated streams
XFAIL: tree-conflict-data-test 3: detect broken tree conflict data
At least one test FAILED, checking <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/tests.log>
FAIL:  client-test 3: test svn_client_patch
FAIL:  db-test 1: get information from wc.db
FAIL:  db-test 2: insert different nodes into wc.db
FAIL:  db-test 3: getting the list of BASE or WORKING children
FAIL:  db-test 4: reading information about the WORKING tree
FAIL:  db-test 5: creation of per-directory handles
FAIL:  db-test 6: scanning added working nodes
FAIL:  db-test 7: deletion introspection functions
FAIL:  db-test 8: relocating a node
FAIL:  db-test 9: upgrading to format 15
FAIL:  db-test 10: work queue processing
FAIL:  entries-compat-test 1: entries are allocated in access baton
FAIL:  entries-compat-test 2: access baton mojo can return stubs
FAIL:  fs-pack-test 1: pack a FSFS filesystem
FAIL:  fs-pack-test 2: pack FSFS where revs % shard = 0
FAIL:  fs-pack-test 3: read from a packed FSFS filesystem
FAIL:  fs-pack-test 4: commit to a packed FSFS filesystem
FAIL:  fs-pack-test 5: get/set revprop while packing FSFS filesystem
FAIL:  fs-test 1: begin a txn, check its name, then close it
FAIL:  fs-test 2: open an existing transaction by name
FAIL:  fs-test 3: begin a txn, get the txn root, and add a file
FAIL:  fs-test 4: create 2 txns, list them, and verify the list
FAIL:  fs-test 5: check that transaction names are not reused
FAIL:  fs-test 6: write and read a file's contents
FAIL:  fs-test 7: test basic file and subdirectory creation
FAIL:  fs-test 8: make The Official Subversion Test Tree
FAIL:  fs-test 9: fill a directory, then list it
FAIL:  fs-test 10: set and get some revision properties
FAIL:  fs-test 11: set/get txn props, commit, validate new rev props
FAIL:  fs-test 12: set and get some node properties
FAIL:  fs-test 13: delete mutable nodes from directories
FAIL:  fs-test 14: delete nodes tree
FAIL:  fs-test 15: fetch the youngest revision from a filesystem
FAIL:  fs-test 16: basic commit
FAIL:  fs-test 17: testing tree validation helper
FAIL:  fs-test 19: copying and tracking copy history
FAIL:  fs-test 20: commit datestamps
FAIL:  fs-test 21: check old revisions
FAIL:  fs-test 22: after each commit, check all revisions
FAIL:  fs-test 23: create and modify medium file
FAIL:  fs-test 24: create and modify large file
FAIL:  fs-test 25: ensure accurate storage of root node
FAIL:  fs-test 26: svn_fs_node_created_rev test
FAIL:  fs-test 27: test svn_fs_check_related
FAIL:  fs-test 28: test complex copies (branches)
FAIL:  fs-test 29: test checksums
FAIL:  fs-test 30: calculating closest history-affecting copies
FAIL:  fs-test 31: svn_fs_root_t (base) revisions
FAIL:  fs-test 32: test dir prop preservation in unordered txns
FAIL:  fs-test 33: test svn_fs_set_uuid
FAIL:  fs-test 34: test svn_fs_node_origin_rev
FAIL:  fs-test 35: create and modify small file
FAIL:  locks-test 1: lock only
FAIL:  locks-test 2: lookup lock by path
FAIL:  locks-test 3: attach lock
FAIL:  locks-test 4: get locks
FAIL:  locks-test 5: basic locking
FAIL:  locks-test 6: test that locking requires proper credentials
FAIL:  locks-test 7: test that locking is enforced in final commit step
FAIL:  locks-test 8: dir propchange can be committed with locked child
FAIL:  locks-test 11: test that locks can expire
FAIL:  locks-test 12: breaking, stealing, refreshing a lock
FAIL:  locks-test 13: check out-of-dateness before locking
FAIL:  pristine-store-test 1: pristine_write_read
FAIL:  ra-local-test 1: open an ra session to a local repository
FAIL:  ra-local-test 2: get the youngest revision in a repository
FAIL:  ra-local-test 6: test svn_ra_local__split_URL correctness
FAIL:  repos-test 1: test svn_repos_dir_delta2
FAIL:  repos-test 2: test deletions under copies in node_tree code
FAIL:  repos-test 3: test svn_repos_history() (partially)
FAIL:  repos-test 4: test svn_repos_node_locations
FAIL:  repos-test 5: test svn_repos_node_locations some more
FAIL:  repos-test 6: test removal of defunct locks
FAIL:  repos-test 8: test authz in the commit editor
FAIL:  repos-test 9: test commit with explicit txn
FAIL:  repos-test 10: test svn_repos_node_location_segments
FAIL:  repos-test 11: test reporter and svn_depth_exclude
FAIL:  repos-test 12: test if revprops are validated by repos
FAIL:  repos-test 13: test svn_repos_get_logs ranges and limits
FAIL:  repos-test 14: test svn_repos_get_file_revsN
Summary of test results:
  211 tests PASSED
  2 tests SKIPPED
  6 tests XFAILED (2 WORK-IN-PROGRESS)
  80 tests FAILED
make: *** [check] Error 1
Generating junit files ...
Directory 'build/junit-reports' not exists, creating ...
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #744

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/744/>

------------------------------------------
Started by user gmcdonald
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
At revision 939291
no change for https://svn.apache.org/repos/asf/subversion/trunk since the previous build
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson805812145500237387.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... yes
checking APR version... 1.3.8
configure: Apache Portable Runtime Utility (APRUTIL) library configuration
checking for APR-util... yes
checking APR-UTIL version... 1.3.9
checking for pkg-config... /usr/bin/pkg-config
configure: checking neon library
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking whether to look for GSSAPI (Kerberos)... no
configure: looking for apr_memcache as part of apr-util
checking apr_memcache.h usability... yes
checking apr_memcache.h presence... yes
checking for apr_memcache.h... yes
checking for apr_memcache_create in -laprutil-1... yes
checking for Apache module support via DSO through APXS... no
==================================================================
WARNING: skipping the build of mod_dav_svn
         try using --with-apxs
==================================================================
configure: checking sqlite library
amalgamation not found at <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/sqlite-amalgamation/sqlite3.c>
checking sqlite3.h usability... no
checking sqlite3.h presence... no
checking for sqlite3.h... no
checking sqlite library version (via pkg-config)... no

An appropriate version of sqlite could not be found.  We recommmend
3.6.17, but require at least 3.4.0.
Please either install a newer sqlite on this system

or

get the sqlite 3.6.17 amalgamation from:
    http://www.sqlite.org/sqlite-amalgamation-3.6.17.tar.gz
unpack the archive using tar/gunzip and copy sqlite3.c from the
resulting directory to:
<http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/ws/subversion-trunk/sqlite-amalgamation/sqlite3.c>
This file also ships as part of the subversion-deps distribution.

configure: error: Subversion requires SQLite
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #743

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/743/changes>

Changes:

[gstein] Rename the svn_sqlite__db_t.result_pool member to STATE_POOL to indicate
this is a long-lived internal, ever-growing pool not subject to callers'
management.

* subversion/libsvn_subr/sqlite.c:
  (struct svn_sqlite__db_t): rename result_pool to state_pool
  (svn_sqlite__get_statement, svn_sqlite__open, svn_sqlite__close): track
    the member rename

[neels] Another entry_t down.

* subversion/libsvn_client/merge.c
  (obstructed_or_missing):
    Use wc-ng API instead of svn_wc__get_entry_versioned(), and much simplify
    this function in the process. Untangle, rinse and dry.
  (node_kind_working, node_kind_on_disk):
    Remove these ghastly two functions and incorporate into
    obstructed_or_missing(), the way it should always have been.

------------------------------------------
Started by user gmcdonald
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_subr/sqlite.c
U         subversion/libsvn_client/merge.c
At revision 939287
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson16201295851076056.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared --with-apr=/usr/local/apr
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... yes
checking APR version... 1.3.8
configure: Apache Portable Runtime Utility (APRUTIL) library configuration
checking for APR-util... no
configure: WARNING: APRUTIL not found
The Apache Portable Runtime Utility (APRUTIL) library cannot be found.
Either install APRUTIL on this system and supply the appropriate
--with-apr-util option

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

Run that right here in the top level of the Subversion tree.
Afterwards, run apr-util/buildconf in that subdirectory and
then run configure again here.

configure: error: no suitable APRUTIL found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #742

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/742/changes>

Changes:

[cmpilato] * subversion/libsvn_client/info.c
  (crawl_entries): Update docstring only.

[rhuijben] * subversion/mod_dav_svn/reports/update.c
  (dav_svn__update_report): Fix accidental whitespace change caused by
    constructing the log message for r939002. Hopefully this commit
    also triggers the eu asf mirror to synchronize back to HEAD.

[cmpilato] * subversion/mod_dav_svn/repos.c
  (dav_svn__method_post): Answer question posed in r938983 by removing
    obviously dead code leftover from work done in r875738.

[rhuijben] * subversion/mod_dav_svn/reports/update.c
  (dav_svn__update_report): Following up on r939000, make sure
    everything fits within 80 characters and don't duplicate
    a constant string.

[rhuijben] Provide an error message instead of just 'connection truncated' when updating
to a revision higher than the current head revision of the repository over
HTTPs.

The original patch from Kamesh was specifically targetted to a master-slave
setup. I tweaked the error message to remove these specifics, to at least
show an error that helps resolving the problem.

See
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2405550

Patch by: kameshj
(Tweaked by me)

* subversion/mod_dav_svn/reports/update.c
  (dav_svn__update_report): Give a user readable error when a reported
    revision is younger then the HEAD revision of the current repository.

[pburba] Remove an XFailing issue #3020 svnadmin test that expected behavior that was
ultimately judged incorrect.

The test svnadmin_tests.py 20 'filter mergeinfo revs outside of dump stream'
expected that svnadmin load would filter out mergeinfo references that were
older than the first original revision in the dump stream.  This caused a
regression in a common dump-load use case,
see http://subversion.tigris.org/issues/show_bug.cgi?id=3020#desc15

It was decided that svndumpfilter should be where this type of filtering
happens, see http://svn.haxx.se/dev/archive-2010-04/0475.shtml

So some parts of this test will find their way into a new svndumpfilter
test, but *this* test will never lose its XFail status so it makes no
sense to keep it.

* subversion/tests/cmdline/
  svnadmin_tests_data/mergeinfo_included_partial.dump: Delete test data as
  the only test to use it is now gone.

* subversion/tests/cmdline/svndumpfilter_tests.py

  (drop_mergeinfo_outside_of_dump_stream): Delete.

  (dont_drop_valid_mergeinfo_during_incremental_loads): The deleted test
   above had some comments referenced by this test, so copy the relevant
   bits here.

  (test_list): Remove drop_mergeinfo_outside_of_dump_stream.

[rhuijben] * cmdline/svntest/main.py
  (run_tests): Only recreate the config directory in the parent
    process of the test runner to fix some spurious errors while running
    tests parallel. Also move the check for the pristine repository in
    this same block, as it is unlikely that this repository disappeared
    since starting the parent process.

------------------------------------------
Started by an SCM change
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_client/info.c
U         subversion/mod_dav_svn/repos.c
U         subversion/mod_dav_svn/reports/update.c
U         subversion/tests/cmdline/svnadmin_tests.py
D         subversion/tests/cmdline/svnadmin_tests_data/mergeinfo_included_partial.dump
U         subversion/tests/cmdline/svntest/main.py
At revision 939057
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson9006031038560865693.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #741

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/741/changes>

Changes:

[philip] * subversion/mod_dav_svn/repos.c (dav_svn__method_post): Add question comment.

[julianfoad] * subversion/libsvn_diff/diff_memory.c
  (source_tokens_t): Add 'const' to the source pointer ...
  (fill_source_tokens): ... and remove a cast from here.

[julianfoad] Avoid casting away 'const'.

* subversion/libsvn_wc/props.c
  (combine_mergeinfo_props, combine_forked_mergeinfo_props,
   apply_single_mergeinfo_prop_change): Put the result in a temporary
    variable first to avoid casting away 'const'.

------------------------------------------
Started by an SCM change
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_diff/diff_memory.c
U         subversion/libsvn_wc/props.c
U         subversion/mod_dav_svn/repos.c
At revision 938991
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson3983683485043108354.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #740

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/740/changes>

Changes:

[julianfoad] * subversion/libsvn_wc/lock.c
  (add_to_shared): Avoid casting away 'const'.

[julianfoad] * subversion/libsvn_subr/io.c
  (svn_io_parse_mimetypes_file): Avoid casting away 'const'.

[julianfoad] * subversion/libsvn_delta/svndiff.c
  Cosmetics: a typo fix and remove blank lines after function doc strings.

[philip] * subversion/libsvn_client/commit_util.c
  (harvest_committables): As a step towards removing an svn_wc_entry_t
   use some wc-ng calls instead of accessing the entry.

[philip] * subversion/libsvn_wc/node.c
  (svn_wc__internal_node_get_url): Handle more cases where the URL can be
   derived from the parent URL.

------------------------------------------
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_wc/lock.c
U         subversion/libsvn_wc/node.c
U         subversion/libsvn_subr/io.c
U         subversion/libsvn_client/commit_util.c
U         subversion/libsvn_delta/svndiff.c
At revision 938930
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson6413070333617997657.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #739

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/739/changes>

Changes:

[julianfoad] * subversion/libsvn_client/commit.c
  (remove_tmpfiles): Rename 'subpool' to 'iterpool'. Lose redundant comments.

[julianfoad] * subversion/libsvn_wc/workqueue.c
  (run_postcommit): Assert that the last skel item is present, documenting a
    reason why in a dev build it might not: it didn't exist before r927056.

------------------------------------------
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_wc/workqueue.c
U         subversion/libsvn_client/commit.c
At revision 938845
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson9075920328227853737.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #738

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/738/changes>

Changes:

[gstein] Provide a mechanism for passing work items into the commit processing.

* subversion/libsvn_wc/wc_db.h:
  (svn_wc__db_global_commit): add WORK_ITEMS parameter

* subversion/libsvn_wc/wc_db.c:
  (struct commit_baton): add WORK_ITEMS member
  (commit_node): queue any work items that were provided
  (svn_wc__db_global_commit): add WORK_ITEMS parameter and store into the
    baton for queueing within the transaction.

* subversion/libsvn_wc/workqueue.c:
  (log_do_committed): adjust the calls to db_global_commits

[gstein] Apply an iterpool.

* subversion/libsvn_wc/adm_crawler.c:
  (svn_wc__internal_transmit_prop_deltas): use an iterpool

------------------------------------------
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_wc/wc_db.c
U         subversion/libsvn_wc/adm_crawler.c
U         subversion/libsvn_wc/wc_db.h
U         subversion/libsvn_wc/workqueue.c
At revision 938776
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson5578534266010631801.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #737

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/737/changes>

Changes:

[gstein] Remove another entry_t from the commit process, along with various
cleaning.

* subversion/libsvn_wc/workqueue.c:
  (log_do_committed): remove entry fetching in favor of a read_info.
    adjust some checks to use the DB status data and kind instead.
    rename inner status to CHILD_STATUS to prevent shadowing, and simplify
    that loop's conditional/continue for deleted nodes.

------------------------------------------
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_wc/workqueue.c
At revision 938761
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson8092880344183059790.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #736

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/736/changes>

Changes:

[hwright] Remove the now-defunct svn_wc__entry_remove(), and replace calls to it with
calls to svn_wc__db_temp_op_remove_entry().

* subversion/libsvn_wc/entries.c
  (svn_wc__entry_remove): Remove.

* subversion/libsvn_wc/entries.h
  (svn_wc__entry_remove): Remove.

* subversion/libsvn_wc/crop.c
  subversion/libsvn_wc/adm_ops.c
  subversion/libsvn_wc/update_editor.c
  subversion/libsvn_wc/entries.c
  subversion/libsvn_wc/log.c:
    Update callers.

[gstein] Simplify some error handling in log_do_committed. Avoid error wrapping,
and leave it to the caller to wrap any error that may be generated.

* subversion/libsvn_wc/workqueue.c:
  (log_do_committed): rather than wrapping errors with
    SVN_ERR_WC_BAD_ADM_LOG, just throw an error and let the caller do the
    wrapping. remove localvar ERR. remove IS_THIS_DIR and inline the test
    in the one usage point.

[hwright] Revert r931697, thereby allowing APR 1.4.x again.  The issue cited in that
revision has not yet been resolved, but the broken parts have been reverted
for the time being.

[gstein] Remove an unused entry_t

* subversion/libsvn_wc/workqueue.c:
  (log_do_committed): remove DIR_ENTRY in the stub reset phase. we don't
    need the entry. remove error wrapping of the entry_modify_stub call.

[gstein] Get rid of OP_REMOVE_REVERT_FILES and just queue the file removals
manually using a pair of OP_FILE_REMOVE operations.

This now removes revert props for directories, which did no seem to be
happening before.

* subversion/libsvn_wc/adm_ops.c:
  (process_committed_leaf): queue two work items for removing revert
    properties and (possibly) a revert text base. no longer call
    svn_wc__wq_remove_revert_files.

* subversion/libsvn_wc/workqueue.h:
  (svn_wc__wq_remove_revert_files): removed

* subversion/libsvn_wc/workqueue.c:
  (OP_REMOVE_REVERT_FILES, run_remove_revert_files,
      svn_wc__wq_remove_revert_files): removed
  (dispatch_table): removed entry for OP_REMOVE_REVERT_FILES

[gstein] Remove the calls to clear the dav_cache. The node is about to be blasted
away, so this is no longer necessary.

* subversion/libsvn_wc/adm_ops.c:
  (svn_wc__internal_remove_from_revision_control): remove clearing of the
    dav_cache since we're about to delete the node

[gstein] * subversion/libsvn_wc/wc_db.c:
  (svn_wc__db_temp_op_remove_entry): rename CURRENT_RELPATH to
    LOCAL_RELPATH for consistency across wc_db.

[gstein] Gut svn_wc__entry_remove()... we don't need to be nice with any entries
cached in the access baton. Adjust db_temp_op_remove_entry to always flush
the cache.

* subversion/libsvn_wc/wc_db.h:
  (svn_wc__db_temp_op_remove_entry): remove FLUSH_ENTRY_CACHE param

* subversion/libsvn_wc/wc_db.c:
  (svn_wc__db_temp_op_remove_entry): remove FLUSH_ENTRY_CACHE param and
    assume TRUE throughout.

* subversion/libsvn_wc/entries.c:
  (svn_wc__entry_remove): gut this function, leaving it (effectively) as a
    wrapper for db_temp_op_remove_entry

[gstein] Revamp the tests to use the simplified Sandbox methods: ospath() for
construction paths (rather than os.path.join), and the simple_* methods

* subversion/tests/cmdline/prop_tests.py:
  (...): rework tests to use the handy methods

[gstein] * subversion/tests/cmdline/svntest/sandbox.py:
  (Sandbox.simple_commit): rename param since the target can be any file
    or directory.

------------------------------------------
Started by an SCM change
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_wc/crop.c
U         subversion/libsvn_wc/adm_ops.c
U         subversion/libsvn_wc/update_editor.c
U         subversion/libsvn_wc/entries.c
U         subversion/libsvn_wc/entries.h
U         subversion/libsvn_wc/wc_db.c
U         subversion/libsvn_wc/log.c
U         subversion/libsvn_wc/wc_db.h
U         subversion/libsvn_wc/workqueue.c
U         subversion/libsvn_wc/workqueue.h
U         subversion/tests/cmdline/prop_tests.py
U         subversion/tests/cmdline/svntest/sandbox.py
U         configure.ac
At revision 938752
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson712171944123282307.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results


Build failed in Hudson: subversion-trunk-ubuntu #735

Posted by Apache Hudson Server <hu...@hudson.zones.apache.org>.
See <http://hudson.zones.apache.org/hudson/job/subversion-trunk-ubuntu/735/changes>

Changes:

[gstein] Clean up a bunch fo entry modification stuff. In particular, constify the
structure used to provide values (tmp_entry.schedule used to be an OUT
parameter in certain cases), and renumber the flag values down into a
simple integer's range (these numbers are not persisted, so this is okay).

* subversion/libsvn_wc/entries.h:
  (svn_wc__atts_to_entry): change MODIFY_FLAGS to 'int'
  (SVN_WC__ENTRY_MODIFY_*): renumbered into 'int' range
  (svn_wc__entry_modify, svn_wc__entry_modify_stub): change MODIFY_FLAGS
    to 'int' and constify ENTRY.

* subversion/libsvn_wc/entries.c:
  (fold_entry): change MODIFY_FLAGS to 'int'. skip setting schedule,
    deferring to the caller for this. use CUR_ENTRY to get the "new"
    schedule for a couple entry structure cleanups
  (fold_scheduling): remove DELETE_ENTRY param, and let the caller handle
    the singular case where this occurs. remove SCRATCH_POOL, as we never
    used it. assert that we never attempt to move into sched-replace (the
    only code which tries this uses FORCE, so fold_scheduling is not
    called). clean up style of the error returns. surface another error
    condition up out of the nested switches, to sit with the other error
    results. unwind the nested switches into simple if-conditions and
    clean up some of the commentary.
  (entry_modify): constify ENTRY_MODS and change MODIFY_FLAGS to 'int'.
    tweak how we handle schedule changes. detect the case for removing the
    entry, rather than letting fold_scheduling tell us.
  (svn_wc__entry_modify, svn_wc__entry_modify_stub): change MODIFY_FLAGS
    to 'int' and constify ENTRY.

* subversion/libsvn_wc/adm_ops.c:
  (svn_wc_add4): change MODIFY_FLAGS to 'int'. move the TMP_ENTRY
    assignments near their MODIFY_FLAGS keys.

* subversion/libsvn_wc/copy.c:
  (post_copy_cleanup): rename FLAGS to MODIFY_FLAGS and make it an 'int'

* subversion/libsvn_wc/log.c:
  (log_do_modify_entry): change MODIFY_FLAGS to 'int'

* subversion/libsvn_wc/old-and-busted.c:
  (do_bool_attr): change MODIFY_FLAGS and MODIFY_FLAG params to 'int'
  (extract_string): change MODIFY_FLAGS and FLAG params to 'int'
  (handle_start_tag): change MODIFY_FLAGS to 'int'

* subversion/libsvn_wc/update_editor.c:
  (add_directory): change MODIFY_FLAGS var to 'int' and do some simple
    reformatting.
  (svn_wc_add_repos_file4): change MODIFY_FLAGS var to 'int'

[pburba] * subversion/libsvn_repos/load.c (parse_baton): Document the rev_map member.

------------------------------------------
Started by an SCM change
Building remotely on minerva.apache.org (Ubuntu)
Updating https://svn.apache.org/repos/asf/subversion/trunk
U         subversion/libsvn_wc/adm_ops.c
U         subversion/libsvn_wc/update_editor.c
U         subversion/libsvn_wc/old-and-busted.c
U         subversion/libsvn_wc/entries.c
U         subversion/libsvn_wc/copy.c
U         subversion/libsvn_wc/entries.h
U         subversion/libsvn_wc/log.c
U         subversion/libsvn_wc/workqueue.c
U         subversion/libsvn_repos/load.c
At revision 938718
[subversion-trunk-ubuntu] $ /bin/bash -xe /tmp/hudson4953588925163203459.sh
+ cd subversion-trunk
+ ./autogen.sh
buildcheck: checking installation...
buildcheck: autoconf version 2.61 (ok)
buildcheck: autoheader version 2.61 (ok)
Creating build-outputs.mk...
Creating svn_private_config.h.in...
Creating configure...

You can run ./configure now.

Running autogen.sh implies you are a maintainer.  You may prefer
to run configure in one of the following ways:

./configure --enable-maintainer-mode
./configure --disable-shared
./configure --enable-maintainer-mode --disable-shared

Note:  If you wish to run a Subversion HTTP server, you will need
Apache 2.x.  See the INSTALL file for details.

+ ./configure --enable-maintainer-mode --disable-shared
configure: Configuring Subversion 1.7.0
configure: creating config.nice
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether ln -s works... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: Apache Portable Runtime (APR) library configuration
checking for APR... no
configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.3.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \
    apr-util

configure: error: no suitable apr found
Recording test results