mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-10 04:41:57 -04:00
13 lines
195 B
Bash
Executable File
13 lines
195 B
Bash
Executable File
#!/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
|
|
|