]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
sanity test
authorK. Richard Pixley <rich@cygnus>
Fri, 1 May 1992 23:22:07 +0000 (23:22 +0000)
committerK. Richard Pixley <rich@cygnus>
Fri, 1 May 1992 23:22:07 +0000 (23:22 +0000)
binutils/ChangeLog
binutils/Makefile.in
binutils/sanity.sh [new file with mode: 0755]

index dd5e4fa5b5d039a2790af5aff223b00795765962..ad88ba7bc1d794b316654d43f2062dd7f52372d5 100644 (file)
@@ -1,3 +1,9 @@
+Fri May  1 16:20:23 1992  K. Richard Pixley  (rich@cygnus.com)
+
+       * sanity.sh: new file.
+
+       * Makefile.in: use sanity test on make check.
+
 Tue Apr 21 13:38:37 1992  K. Richard Pixley  (rich@cygnus.com)
 
        * Makefile.in: rework CFLAGS so that they can be passed on the
index f42616421046cfc77a7a6b31499c4f247a99153e..450cd8e9ecc31a73a16e7c1d4fd1f92af1b8e100 100644 (file)
@@ -134,6 +134,7 @@ BFD = $(LIBDIR)/libbfd.a
 all: $(ADDL_LIBS) $(PROGS)
 
 check:
+       /bin/sh $(srcdir)/sanity.sh .
 
 info: binutils.info
 
diff --git a/binutils/sanity.sh b/binutils/sanity.sh
new file mode 100755 (executable)
index 0000000..9b5ca90
--- /dev/null
@@ -0,0 +1,48 @@
+#!/bin/sh
+### quick sanity test for the binutils.
+###
+### This file was written and is maintained by K. Richard Pixley,
+### rich@cygnus.com.
+
+### fail on errors
+set -e
+
+### first arg is directory in which binaries to be tested reside.
+case "$1" in
+"") BIN=. ;;
+*)  BIN="$1" ;;
+esac
+
+### size
+for i in size objdump nm ar strip ranlib ; do
+       ${BIN}/size ${BIN}/$i > /dev/null
+done
+
+### objdump
+for i in size objdump nm ar strip ranlib ; do
+       ${BIN}/objdump -ahifdrtxsl ${BIN}/$i > /dev/null
+done
+
+### nm
+for i in size objdump nm ar strip ranlib ; do
+       ${BIN}/nm ${BIN}/$i > /dev/null
+done
+
+### strip
+TMPDIR=/tmp/binutils-$$
+mkdir ${TMPDIR}
+
+cp ${BIN}/strip ${TMPDIR}/strip
+
+for i in size objdump nm ar ranlib ; do
+       cp ${BIN}/$i ${TMPDIR}/$i
+       ${BIN}/strip ${TMPDIR}/$i
+       cp ${BIN}/$i ${TMPDIR}/$i
+       ${TMPDIR}/strip ${TMPDIR}/$i
+done
+
+### ar
+
+### ranlib
+
+exit 0