Added test for Zshcompletionoutput - fails

This commit is contained in:
Daniel Aarno 2012-05-17 22:12:53 +02:00
parent ff6803207d
commit 0272fa4739
2 changed files with 14 additions and 0 deletions

1
tests/test82.out Normal file
View File

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

13
tests/test82.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/test23 -h > tmp.out 2>&1
if cmp -s tmp.out $srcdir/test82.out; then
exit 0
else
exit 1
fi