12 lines
167 B
Bash
12 lines
167 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# success
|
||
|
../examples/test5 --aaa asdf -c fdas --fff blah -i one -i two > tmp.out 2>&1
|
||
|
|
||
|
if cmp -s tmp.out $srcdir/test25.out; then
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|
||
|
|