TCLAP/tests/test85.sh
Daniel Aarno 7ab738957c Quick fix for ZshCompletionOutput test
The test was failing because elipsis changed from "..." to
"... ". This is a quick and dirty fix and should be cleaned up.

Also updated copyright notice
2017-08-30 14:26:02 +01:00

14 lines
269 B
Bash
Executable File

#!/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/test85.out; then
exit 0
else
exit 1
fi