diff options
author | Karl Berry <karl@freefriends.org> | 2009-01-25 01:57:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-01-25 01:57:18 +0000 |
commit | af944c3e4ba74f59f21178c8477fdea4b682ef2b (patch) | |
tree | afa6af46a5179bdbd38a05fa7d63b2ff8ae32516 /Build/source/utils/texinfo/install-info/tests/ii-0022-test | |
parent | 0cea5be7570fb0ddc3d28e6bb8371809e04ca2ae (diff) |
remove texinfo
git-svn-id: svn://tug.org/texlive/trunk@11963 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/texinfo/install-info/tests/ii-0022-test')
-rwxr-xr-x | Build/source/utils/texinfo/install-info/tests/ii-0022-test | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Build/source/utils/texinfo/install-info/tests/ii-0022-test b/Build/source/utils/texinfo/install-info/tests/ii-0022-test deleted file mode 100755 index 5ef3882affc..00000000000 --- a/Build/source/utils/texinfo/install-info/tests/ii-0022-test +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# This file is free software; as a special exception the author gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the -# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -#This script requires `mktemp' and `diff' and is designed to be run from -#a Makefile. - -. ./defs || exit 1 - -outputdirfile=`mktemp` -cp ${testdir}/ii-0022-input-dir-file $outputdirfile -if [ "x$?" != "x0" ]; then - exit 1 -fi - -${install_info} --name='* Gnu: (gnu).' ${testdir}/ii-0022-input-info-file $outputdirfile -retval=$? -if [ "x$retval" != "x0" ]; then - exit $retval -fi - -diff ${testdir}/ii-0022-expected-dir-file $outputdirfile -retval=$? - -rm -f $outputdirfile -exit $retval |