summaryrefslogtreecommitdiff
path: root/tclap-1.2.1/tests/test61.sh
blob: a4028801a20b95986a7dd916e164a00a74a8d216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# this tests a bug in handling of - chars in Unlabeled args
# success  
../examples/test2 -i 10 -s hello "-1 -1" > tmp.out 2>&1

if cmp -s tmp.out $srcdir/test61.out; then
	exit 0
else
	exit 1
fi