removed calculation of file size and replaced with limited number of available jobs

This commit is contained in:
Paul Cruz
2017-07-05 11:52:55 -07:00
parent dd8a591d5d
commit a2680e5b96
2 changed files with 65 additions and 7 deletions
+33
View File
@@ -1,6 +1,39 @@
make clean multi
./multi tests/test2048.pdf tmp.zst
zstd -d tmp.zst
diff tmp tests/test2048.pdf
echo "diff test complete"
rm tmp*
./multi tests/test512.pdf tmp.zst
zstd -d tmp.zst
diff tmp tests/test512.pdf
echo "diff test complete"
rm tmp*
./multi tests/test64.pdf tmp.zst
zstd -d tmp.zst
diff tmp tests/test64.pdf
echo "diff test complete"
rm tmp*
./multi tests/test16.pdf tmp.zst
zstd -d tmp.zst
diff tmp tests/test16.pdf
echo "diff test complete"
rm tmp*
./multi tests/test4.pdf tmp.zst
zstd -d tmp.zst
diff tmp tests/test4.pdf
echo "diff test complete"
rm tmp*
./multi tests/test.pdf tmp.zst
zstd -d tmp.zst
diff tmp tests/test.pdf
echo "diff test complete"
rm tmp*
make clean