2000-08-24 08:40:47 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
# FIXME
|
|
|
|
|
|
2008-01-02 18:05:09 +01:00
|
|
|
# Copyright (C) 2008 Free Software Foundation, Inc.
|
2006-08-17 19:58:17 +00:00
|
|
|
|
2007-07-23 14:35:58 +02:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2006-08-17 19:58:17 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-23 14:35:58 +02:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
2006-08-17 19:58:17 +00:00
|
|
|
# (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
|
2007-07-23 14:35:58 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2006-08-17 19:58:17 +00:00
|
|
|
|
2000-08-24 08:40:47 +00:00
|
|
|
if test "$VERBOSE" = yes; then
|
|
|
|
|
set -x
|
|
|
|
|
FIXME --version
|
|
|
|
|
fi
|
|
|
|
|
|
2000-12-10 09:20:35 +00:00
|
|
|
# FIXME: . $srcdir/../envvar-check
|
|
|
|
|
# FIXME: . $srcdir/../lang-default
|
2001-09-02 15:19:27 +00:00
|
|
|
# FIXME: PRIV_CHECK_ARG=require-root . $srcdir/../priv-check
|
2007-09-08 15:47:16 +02:00
|
|
|
. $srcdir/../test-lib.sh
|
2007-09-12 14:52:26 +02:00
|
|
|
# FIXME skip_if_root_
|
2000-12-10 09:20:35 +00:00
|
|
|
|
2007-09-08 15:47:16 +02:00
|
|
|
# If used, these must *follow* test-lib.sh.
|
|
|
|
|
# FIXME: cleanup_() { rm -rf "$other_partition_tmpdir"; }
|
|
|
|
|
# FIXME: . "$abs_top_srcdir/tests/other-fs-tmpdir"
|
2000-08-24 08:40:47 +00:00
|
|
|
|
|
|
|
|
fail=0
|
2001-11-03 21:44:36 +00:00
|
|
|
FIXME > out || fail=1
|
2003-07-11 20:40:28 +00:00
|
|
|
cat <<\EOF > exp || fail=1
|
2001-08-04 15:16:37 +00:00
|
|
|
FIXME
|
2001-11-03 21:44:36 +00:00
|
|
|
EOF
|
|
|
|
|
|
2007-09-08 15:47:16 +02:00
|
|
|
compare out exp || fail=1
|
2000-08-24 08:40:47 +00:00
|
|
|
|
2002-07-29 09:54:40 +00:00
|
|
|
(exit $fail); exit $fail
|