pcompress/test/t2.tst

45 lines
903 B
Scilab
Raw Normal View History

2012-11-08 16:52:37 +00:00
#
# Test all checksum mechanisms
#
echo "#################################################"
echo "# All checksums"
echo "#################################################"
for algo in zlib ppmd
do
for tf in bin.dat share.dat inc.dat
do
for cksum in CRC64 SHA256 SHA512 SKEIN256 SKEIN512 KECCAK256 KECCAK512
2012-11-08 16:52:37 +00:00
do
cmd="../../pcompress -c ${algo} -l 6 -s 1m -S ${cksum} ${tf}"
echo "Running $cmd"
eval $cmd
if [ $? -ne 0 ]
then
echo "FATAL: Compression failed."
2012-11-08 16:52:37 +00:00
exit 1
fi
cmd="../../pcompress -d ${tf}.pz ${tf}.1"
echo "Running $cmd"
eval $cmd
if [ $? -ne 0 ]
then
echo "FATAL: Decompression failed."
2012-11-08 16:52:37 +00:00
exit 1
fi
diff ${tf} ${tf}.1 > /dev/null
if [ $? -ne 0 ]
2012-11-08 16:52:37 +00:00
then
echo "FATAL: Decompression was not correct"
2012-11-08 16:52:37 +00:00
exit 1
fi
rm -f ${tf}.pz ${tf}.1
done
done
done
echo "#################################################"
echo ""