source: trunk/test/config3_test.sh

Last change on this file was 1532, checked in by Peter Johansson, 11 years ago

update copyright years

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 1.0 KB
Line 
1#!/bin/sh
2# $Id: config3_test.sh 1532 2012-10-05 01:14:42Z peter $
3#
4# Copyright (C) 2010, 2012 Peter Johansson
5#
6# This file is part of svndigest, http://dev.thep.lu.se/svndigest
7#
8# svndigest is free software; you can redistribute it and/or modify it
9# under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 3 of the License, or
11# (at your option) any later version.
12#
13# svndigest is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with svndigest. If not, see <http://www.gnu.org/licenses/>.
20
21# test that we can use /dev/null as config file
22
23. test/init.sh || exit 99
24set -e
25
26test -e /dev/null || exit_skip
27test -r /dev/null || exit_skip
28SVNDIGEST_run 0 -g --config-file /dev/null
29SVNDIGEST_run 1 -g --config-file .
30$GREP 'is a directory' stderr || exit_fail
31
32exit_success
Note: See TracBrowser for help on using the repository browser.