$(@D)/pigz -kfK pigz.c ; $(@D)/pigz -t pigz.c.zip
printf "" | $(@D)/pigz -cdf | wc -c | test `cat` -eq 0
printf "x" | $(@D)/pigz -cdf | wc -c | test `cat` -eq 1
printf "xy" | $(@D)/pigz -cdf | wc -c | test `cat` -eq 2
printf "xyz" | $(@D)/pigz -cdf | wc -c | test `cat` -eq 3
(printf "w" | gzip ; printf "x") | $(@D)/pigz -cdf | wc -c | test `cat` -eq 2
(printf "w" | gzip ; printf "xy") | $(@D)/pigz -cdf | wc -c | test `cat` -eq 3
(printf "w" | gzip ; printf "xyz") | $(@D)/pigz -cdf | wc -c | test `cat` -eq 4
cd ..; cp -pr 1 2; $(@D)/pigz -rp 4 --index %z 1; \
$(@D)/pigz -drp 4 --index %z 1; diff -r 1 2)