Le 05/21/14 19:20, Adam Buchbinder a écrit :
> +     # 256MB is the smallest acceptable btrfs image.
> +     dd if=/dev/zero of=$here/test.img bs=1024 count=$((256*1024)) \
> +             >> convert-tests-results.txt 2>&1 || _fail "dd failed"

What about using a sparse file to speed up the test and be nicer with the 
underlying storage ?
For example:
  truncate -s 256M $here/test.img

Because this does not reset test.img with zeros, one may want to the
  rm -f test.img
line at the beginning of the test function.
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to