summaryrefslogtreecommitdiff
path: root/contrib/dg-cmp-results.sh
diff options
context:
space:
mode:
authorbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>2008-11-18 22:00:42 +0000
committerbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>2008-11-18 22:00:42 +0000
commitda982362f10f6955efd57fa4d59a399a18f9d226 (patch)
tree61fd45f381586b6a852cabfcd59833cc22229849 /contrib/dg-cmp-results.sh
parent411c3b5d2c54f061cffccc7e03a3ac5eedb27b38 (diff)
downloadgcc-da982362f10f6955efd57fa4d59a399a18f9d226.tar.gz
* dg-cmp-results.sh: Do not print usage if either .sum file cannot
be opened; print a more meaningful error instead. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@141979 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/dg-cmp-results.sh')
-rwxr-xr-xcontrib/dg-cmp-results.sh14
1 files changed, 12 insertions, 2 deletions
diff --git a/contrib/dg-cmp-results.sh b/contrib/dg-cmp-results.sh
index 753005db204..d291769547d 100755
--- a/contrib/dg-cmp-results.sh
+++ b/contrib/dg-cmp-results.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright (C) 2006 Free Software Foundation
+# Copyright (C) 2006, 2008 Free Software Foundation
#
# Analyze changes in GCC DejaGNU test logs for binutils, gcc, gdb, etc.
# Original version written in 2005 by James Lemke <jwlemke@wasabisystems.com>.
@@ -27,11 +27,21 @@ while test "$1" = "-v"; do
shift
done
-if test $# -ne 3 -o ! -f "$2" -o ! -f "$3"; then
+if test $# -ne 3 ; then
usage
exit 1
fi
+if test ! -f "$2"; then
+ echo "unable to open $2" >&2
+ exit 1
+fi
+
+if test ! -f "$3"; then
+ echo "unable to open $3" >&2
+ exit 1
+fi
+
# Command differences for various platforms.
case `uname -s` in
Darwin|NetBSD)