diff options
Diffstat (limited to 'tclap-1.2.1/tests/test33.sh')
-rw-r--r-- | tclap-1.2.1/tests/test33.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tclap-1.2.1/tests/test33.sh b/tclap-1.2.1/tests/test33.sh new file mode 100644 index 0000000..210cd09 --- /dev/null +++ b/tclap-1.2.1/tests/test33.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +# success +../examples/test5 -a asdf -c fdas --eee blah --ddd -j o --jjj t > tmp.out 2>&1 + +if cmp -s tmp.out $srcdir/test33.out; then + exit 0 +else + exit 1 +fi + |