mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
9103cfa195
abbreviated some macros colcrt.desc: changed 'trenco.myrias.com' to 'ftp.gno.org' tests/dotests, tests/fulltests: changed paths of $testcmd and $trcmd
129 lines
3.9 KiB
Plaintext
Executable File
129 lines
3.9 KiB
Plaintext
Executable File
# Tests for colcrt command; invoked by command file "fulltests"
|
|
# Adapted from a test script written by Dave Tribby
|
|
#
|
|
# $Id: dotests,v 1.2 1998/03/08 17:36:35 gdr-ftp Exp $
|
|
|
|
# Location of the command to be tested
|
|
set testcmd="/obj/gno/usr.bin/colcrt/colcrt"
|
|
|
|
# Record starting time
|
|
echo -n "Testing command $testcmd beginning at"
|
|
date
|
|
|
|
set src="input.a"
|
|
set cmp="colcrt.out.a1"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output contained in file $src"
|
|
$testcmd $src > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
set cmp="colcrt.out.a2"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output contained in file $src, suppressing underlining"
|
|
$testcmd - $src > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
set cmp="colcrt.out.a3"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output contained in file $src, printing all half-lines"
|
|
$testcmd -2 $src > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
set cmp="colcrt.out.a4"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output contained in file $src, suppressing underlining and printing half-lines"
|
|
$testcmd - -2 $src > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
set src="input.b"
|
|
set cmp="colcrt.out.b1"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output redirected from file $src"
|
|
$testcmd < $src > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
set cmp="colcrt.out.b2"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output redirected from file $src, suppressing underlining"
|
|
$testcmd - < $src > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
set cmp="colcrt.out.b3"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output redirected from file $src, printing all half-lines"
|
|
$testcmd -2 < $src > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
set cmp="colcrt.out.b4"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output redirected from file $src, suppressing underlining and printing half-lines"
|
|
$testcmd - -2 < $src > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
set src1="input.a"
|
|
set src2="input.b"
|
|
set cmp="colcrt.out.ab"
|
|
set dest="/tmp/$cmp"
|
|
echo "Filtering nroff output contained in both files $src1 and $src2"
|
|
$testcmd $src1 $src2 > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
echo "***** Version *****"
|
|
|
|
set cmp="colcrt.out.ver"
|
|
set dest="/tmp/$cmp"
|
|
echo "Printing version information"
|
|
$testcmd -V > $dest
|
|
echo " Completion status = $status"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|
|
echo ""
|
|
|
|
echo "***** Error Messages *****"
|
|
|
|
set cmp="colcrt.out.err"
|
|
set dest="/tmp/$cmp"
|
|
echo "Expected error: illegal option"
|
|
$testcmd -x >& $dest
|
|
echo " Error completion status = $status (expected: 1)"
|
|
echo "Checking results against control file $cmp (no differences expected)"
|
|
cmp $cmp $dest
|
|
echo " Completion status = $status"
|