Added test for Zshcompletionoutput - fails

This commit is contained in:
Daniel Aarno 2012-05-17 22:12:53 +02:00
parent 6e236d28db
commit 279a82494f
3 changed files with 16 additions and 1 deletions

View File

@ -6,7 +6,7 @@ cd $DIR
let "suc = 0"
let "fail = 0"
NUMTEST=84
NUMTEST=85
for (( tno = 1 ; $tno <= $NUMTEST ; tno = $tno + 1 )); do
./testCheck.sh $tno

2
tests/test85.out Normal file
View File

@ -0,0 +1,2 @@
This feature appears broken!

13
tests/test85.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/sh
# zshcompletionoutput. The when this test fails due to e.g. formatting
# changes the results needs to be manually reviewed and the test81.out
# updated
../examples/test25 -h > tmp.out 2>&1
if cmp -s tmp.out $srcdir/test82.out; then
exit 0
else
exit 1
fi