13 lines
195 B
Bash
13 lines
195 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Checks that parsing exceptions are properly
|
||
|
# propagated to the caller.
|
||
|
../examples/test18 --help > tmp.out 2>&1
|
||
|
|
||
|
if cmp -s tmp.out $srcdir/test70.out; then
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|
||
|
|