test/config_props_test.sh

Code
Comments
Other
Rev Date Author Line
1365 10 Jun 11 peter 1 #!/bin/sh
1365 10 Jun 11 peter 2 # $Id$
1365 10 Jun 11 peter 3 #
1532 05 Oct 12 peter 4 # Copyright (C) 2011, 2012 Peter Johansson
1365 10 Jun 11 peter 5 #
1365 10 Jun 11 peter 6 # This file is part of svndigest, http://dev.thep.lu.se/svndigest
1365 10 Jun 11 peter 7 #
1365 10 Jun 11 peter 8 # svndigest is free software; you can redistribute it and/or modify it
1365 10 Jun 11 peter 9 # under the terms of the GNU General Public License as published by
1365 10 Jun 11 peter 10 # the Free Software Foundation; either version 3 of the License, or
1365 10 Jun 11 peter 11 # (at your option) any later version.
1365 10 Jun 11 peter 12 #
1365 10 Jun 11 peter 13 # svndigest is distributed in the hope that it will be useful, but
1365 10 Jun 11 peter 14 # WITHOUT ANY WARRANTY; without even the implied warranty of
1365 10 Jun 11 peter 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1365 10 Jun 11 peter 16 # General Public License for more details.
1365 10 Jun 11 peter 17 #
1365 10 Jun 11 peter 18 # You should have received a copy of the GNU General Public License
1365 10 Jun 11 peter 19 # along with svndigest. If not, see <http://www.gnu.org/licenses/>.
1365 10 Jun 11 peter 20
1365 10 Jun 11 peter 21 # testing that setting svn prop via config file works as expected (see
1365 10 Jun 11 peter 22 # ticket #501)
1365 10 Jun 11 peter 23
1365 10 Jun 11 peter 24 required="repo"
1365 10 Jun 11 peter 25
1525 01 Oct 12 peter 26 . test/init.sh || exit 99
1365 10 Jun 11 peter 27 set -e
1365 10 Jun 11 peter 28
1365 10 Jun 11 peter 29 # create config file
1365 10 Jun 11 peter 30 cat > config <<EOF
1365 10 Jun 11 peter 31 [svn-props]
1365 10 Jun 11 peter 32 lib = svndigest:ignore
1365 10 Jun 11 peter 33 EOF
1365 10 Jun 11 peter 34
1365 10 Jun 11 peter 35 SVNDIGEST_run 0 -r $rootdir --ignore-cache --no-report --config-file=config
1365 10 Jun 11 peter 36
1365 10 Jun 11 peter 37 grep "$abs_wcdir/lib" stdout && exit_fail
1365 10 Jun 11 peter 38
1365 10 Jun 11 peter 39 exit_success