From dcd33d3089bec1de05a96839d49e3bb586b918ad Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 12 May 2012 12:07:40 +0100 Subject: Bug fix: fail if filename given on command line does not exist --- tests/fails-on-nonexistent-root.exit | 1 + tests/fails-on-nonexistent-root.script | 24 ++++++++++++++++++++++++ tests/fails-on-nonexistent-root.stderr | 1 + 3 files changed, 26 insertions(+) create mode 100644 tests/fails-on-nonexistent-root.exit create mode 100755 tests/fails-on-nonexistent-root.script create mode 100644 tests/fails-on-nonexistent-root.stderr (limited to 'tests') diff --git a/tests/fails-on-nonexistent-root.exit b/tests/fails-on-nonexistent-root.exit new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/tests/fails-on-nonexistent-root.exit @@ -0,0 +1 @@ +1 diff --git a/tests/fails-on-nonexistent-root.script b/tests/fails-on-nonexistent-root.script new file mode 100755 index 0000000..aa03bac --- /dev/null +++ b/tests/fails-on-nonexistent-root.script @@ -0,0 +1,24 @@ +#!/bin/sh +# Copyright 2012 Lars Wirzenius +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +set -u + + +"$SRCDIR/summain" "$DATADIR/does-not-exist" 2> "$DATADIR/stderr" +exit=$? +sed "s,$DATADIR,TMP,g" "$DATADIR/stderr" 1>&2 +exit $exit diff --git a/tests/fails-on-nonexistent-root.stderr b/tests/fails-on-nonexistent-root.stderr new file mode 100644 index 0000000..6a9fc7d --- /dev/null +++ b/tests/fails-on-nonexistent-root.stderr @@ -0,0 +1 @@ +ERROR: Does not exist: TMP/does-not-exist -- cgit v1.2.1