1365 |
10 Jun 11 |
peter |
#!/bin/sh |
1365 |
10 Jun 11 |
peter |
# $Id$ |
1365 |
10 Jun 11 |
peter |
3 |
# |
1532 |
05 Oct 12 |
peter |
# Copyright (C) 2011, 2012 Peter Johansson |
1365 |
10 Jun 11 |
peter |
5 |
# |
1365 |
10 Jun 11 |
peter |
# This file is part of svndigest, http://dev.thep.lu.se/svndigest |
1365 |
10 Jun 11 |
peter |
7 |
# |
1365 |
10 Jun 11 |
peter |
# svndigest is free software; you can redistribute it and/or modify it |
1365 |
10 Jun 11 |
peter |
# under the terms of the GNU General Public License as published by |
1365 |
10 Jun 11 |
peter |
# the Free Software Foundation; either version 3 of the License, or |
1365 |
10 Jun 11 |
peter |
# (at your option) any later version. |
1365 |
10 Jun 11 |
peter |
12 |
# |
1365 |
10 Jun 11 |
peter |
# svndigest is distributed in the hope that it will be useful, but |
1365 |
10 Jun 11 |
peter |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
1365 |
10 Jun 11 |
peter |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
1365 |
10 Jun 11 |
peter |
# General Public License for more details. |
1365 |
10 Jun 11 |
peter |
17 |
# |
1365 |
10 Jun 11 |
peter |
# You should have received a copy of the GNU General Public License |
1365 |
10 Jun 11 |
peter |
# along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
1365 |
10 Jun 11 |
peter |
20 |
|
1365 |
10 Jun 11 |
peter |
# testing that setting svn prop via config file works as expected (see |
1365 |
10 Jun 11 |
peter |
# 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 |
# 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 |