test/link_root_test.sh

Code
Comments
Other
Rev Date Author Line
1246 30 Oct 10 peter 1 #!/bin/sh
1246 30 Oct 10 peter 2
1246 30 Oct 10 peter 3 # $Id$
1246 30 Oct 10 peter 4
1532 05 Oct 12 peter 5 # Copyright (C) 2010, 2012 Peter Johansson
1246 30 Oct 10 peter 6 #
1246 30 Oct 10 peter 7 # This file is part of svndigest, http://dev.thep.lu.se/svndigest
1246 30 Oct 10 peter 8 #
1246 30 Oct 10 peter 9 # svndigest is free software; you can redistribute it and/or modify it
1246 30 Oct 10 peter 10 # under the terms of the GNU General Public License as published by
1246 30 Oct 10 peter 11 # the Free Software Foundation; either version 3 of the License, or
1246 30 Oct 10 peter 12 # (at your option) any later version.
1246 30 Oct 10 peter 13 #
1246 30 Oct 10 peter 14 # svndigest is distributed in the hope that it will be useful, but
1246 30 Oct 10 peter 15 # WITHOUT ANY WARRANTY; without even the implied warranty of
1246 30 Oct 10 peter 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1246 30 Oct 10 peter 17 # General Public License for more details.
1246 30 Oct 10 peter 18 #
1246 30 Oct 10 peter 19 # You should have received a copy of the GNU General Public License
1246 30 Oct 10 peter 20 # along with svndigest. If not, see <http://www.gnu.org/licenses/>.
1246 30 Oct 10 peter 21
1246 30 Oct 10 peter 22 required="repo"
1246 30 Oct 10 peter 23
1525 01 Oct 12 peter 24 . test/init.sh || exit 99
1246 30 Oct 10 peter 25
1246 30 Oct 10 peter 26 targetdir=output
1246 30 Oct 10 peter 27 rm -rf $targetdir
1246 30 Oct 10 peter 28 $mkdir_p $targetdir
1246 30 Oct 10 peter 29 SVNDIGEST_run 0 -r $rootdir/link-dir -t $targetdir --ignore-cache --format=none
1246 30 Oct 10 peter 30
1246 30 Oct 10 peter 31 ls $targetdir
1246 30 Oct 10 peter 32 test -e $targetdir/link-dir || exit_fail
1246 30 Oct 10 peter 33
1246 30 Oct 10 peter 34 exit_success;