mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-19 10:15:48 +02:00
28 lines
531 B
Bash
Executable File
28 lines
531 B
Bash
Executable File
#! /bin/sh
|
|
# This script was generated automatically by build-script.
|
|
case $# in
|
|
0) xx='../../src/pr';;
|
|
*) xx="$1";;
|
|
esac
|
|
test "$VERBOSE" && echo=echo || echo=:
|
|
$echo testing program: $xx
|
|
errors=0
|
|
test "$srcdir" || srcdir=.
|
|
test "$VERBOSE" && $xx --version 2> /dev/null
|
|
|
|
# Make sure we get English translations.
|
|
LANGUAGE=C
|
|
export LANGUAGE
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
LANG=C
|
|
export LANG
|
|
|
|
if test $errors = 0 ; then
|
|
$echo Passed all 0 tests. 1>&2
|
|
else
|
|
$echo Failed $errors tests. 1>&2
|
|
fi
|
|
test $errors = 0 || errors=1
|
|
exit $errors
|