12 lines
143 B
Bash
12 lines
143 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# success test octal
|
||
|
../examples/test19 -i 012 > tmp.out 2>&1
|
||
|
|
||
|
if cmp -s tmp.out $srcdir/test72.out; then
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|
||
|
|