test.sh: Make it general, make it work

pull/1/merge
Dave Vasilevsky 12 years ago
parent b47e687a55
commit b02ae92561

@ -1,24 +1,19 @@
#!/bin/bash #!/bin/bash
#base=lmnopuz tarball=$1
#file=lmnopuz/CheckPUZ.app/Contents/Resources/script sample=$2
base=nicotine
file=nicotine/museek+-0.1.13/doc/SConscript
#base=simbl
#file=Users/vasi/Desktop/SIMBL/keywurl/SIMBL.pkg/Contents/Info.plist
echo XZ echo XZ
time xz -c < tars/$base.tar > tars/$base.txz time xz -c < "$tarball" > test.txz
time xz -cd < tars/$base.txz | tar xO $file | md5sum time xz -cd < test.txz | tar xO "$sample" | md5sum
echo; echo; echo PIXZ echo; echo; echo PIXZ
time ./write tars/$base.tar tars/$base.tpxz time ./pixz < "$tarball" > test.tpxz
time ./read tars/$base.tpxz $file | tar xO $file | md5sum time ./pixz -x "$sample" < test.tpxz | tar xO "$sample" | md5sum
echo; echo; echo CROSS echo; echo; echo CROSS
xz -cd < tars/$base.tpxz | tar xO $file | md5sum xz -cd < test.tpxz | tar xO "$sample" | md5sum
echo; echo echo; echo
du -sh tars/$base.tar tars/$base.tpxz tars/$base.txz du -sh "$tarball" test.tpxz test.txz
rm test.tpxz test.txz

Loading…
Cancel
Save