added some basic parsing for args

This commit is contained in:
Paul Cruz
2017-07-05 12:20:16 -07:00
parent 898c1a5b46
commit b42108386a
2 changed files with 35 additions and 12 deletions
+6 -6
View File
@@ -1,36 +1,36 @@
make clean multi
./multi tests/test2048.pdf tmp.zst
./multi tests/test2048.pdf -otmp.zst
zstd -d tmp.zst
diff tmp tests/test2048.pdf
echo "diff test complete"
rm tmp*
./multi tests/test512.pdf tmp.zst
./multi tests/test512.pdf -otmp.zst
zstd -d tmp.zst
diff tmp tests/test512.pdf
echo "diff test complete"
rm tmp*
./multi tests/test64.pdf tmp.zst
./multi tests/test64.pdf -otmp.zst
zstd -d tmp.zst
diff tmp tests/test64.pdf
echo "diff test complete"
rm tmp*
./multi tests/test16.pdf tmp.zst
./multi tests/test16.pdf -otmp.zst
zstd -d tmp.zst
diff tmp tests/test16.pdf
echo "diff test complete"
rm tmp*
./multi tests/test4.pdf tmp.zst
./multi tests/test4.pdf -otmp.zst
zstd -d tmp.zst
diff tmp tests/test4.pdf
echo "diff test complete"
rm tmp*
./multi tests/test.pdf tmp.zst
./multi tests/test.pdf -otmp.zst
zstd -d tmp.zst
diff tmp tests/test.pdf
echo "diff test complete"