mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-07 11:17:50 -04:00
14 lines
269 B
Bash
14 lines
269 B
Bash
#!/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
|
|
|