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