12 lines
156 B
Bash
12 lines
156 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# success
|
||
|
../examples/test5 -b asdf -c fdas -g asdf -j homer > tmp.out 2>&1
|
||
|
|
||
|
if cmp -s tmp.out $srcdir/test21.out; then
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|
||
|
|