test/repo_test.sh

Code
Comments
Other
Rev Date Author Line
953 06 Dec 09 peter 1 #!/bin/sh
568 12 Mar 08 peter 2
267 01 May 07 jari 3 # $Id$
246 28 Apr 07 peter 4
978 12 Dec 09 peter 5 # Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
1532 05 Oct 12 peter 6 # Copyright (C) 2009, 2010, 2012 Peter Johansson
1598 26 Aug 15 jari 7 # Copyright (C) 2015 Jari Häkkinen
327 18 May 07 jari 8 #
687 04 Aug 08 peter 9 # This file is part of svndigest, http://dev.thep.lu.se/svndigest
327 18 May 07 jari 10 #
327 18 May 07 jari 11 # svndigest is free software; you can redistribute it and/or modify it
327 18 May 07 jari 12 # under the terms of the GNU General Public License as published by
693 11 Sep 08 jari 13 # the Free Software Foundation; either version 3 of the License, or
327 18 May 07 jari 14 # (at your option) any later version.
327 18 May 07 jari 15 #
327 18 May 07 jari 16 # svndigest is distributed in the hope that it will be useful, but
327 18 May 07 jari 17 # WITHOUT ANY WARRANTY; without even the implied warranty of
327 18 May 07 jari 18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
327 18 May 07 jari 19 # General Public License for more details.
327 18 May 07 jari 20 #
327 18 May 07 jari 21 # You should have received a copy of the GNU General Public License
693 11 Sep 08 jari 22 # along with svndigest. If not, see <http://www.gnu.org/licenses/>.
327 18 May 07 jari 23
952 06 Dec 09 peter 24 required="repo"
246 28 Apr 07 peter 25
1525 01 Oct 12 peter 26 . test/init.sh || exit 99
568 12 Mar 08 peter 27
1093 12 Jun 10 peter 28 targetdir=$abs_builddir/generated_output
1022 10 Jan 10 peter 29 $mkdir_p $targetdir
1092 12 Jun 10 peter 30 SVNDIGEST_run 0 -r $rootdir -t $targetdir --ignore-cache --no-report
1256 01 Nov 10 peter 31 test -e stderr || exit_fail
1256 01 Nov 10 peter 32 test -s stderr && exit_fail
822 25 Sep 09 peter 33
1092 12 Jun 10 peter 34 SVNDIGEST_run 0 -r $rootdir -t $targetdir --force
1598 26 Aug 15 jari 35 # the below test typically fails with plplot 5.11.0
1256 01 Nov 10 peter 36 test -e stderr || exit_fail
1256 01 Nov 10 peter 37 test -s stderr && exit_fail
744 08 Jan 09 peter 38
952 06 Dec 09 peter 39 exit_success;