search for: tarsiz

Displaying 3 results from an estimated 3 matches for "tarsiz".

Did you mean: tarsize
2014 Jan 27
0
[PATCH INCOMPLETE] Rewrite virt-make-fs in C (originally Perl).
...random_choice` + +choices=("" --size=+1M) +size=`random_choice` + +if [ -n "$LIBGUESTFS_DEBUG" ]; then debug=--debug; fi + +params="$type $format $partition $size $debug" +echo "test-virt-make-fs: parameters: $params" + +rm -f test.file test.tar output.img + +tarsize=$((RANDOM & 8191)) +echo "test-virt-make-fs: size of test file: $tarsize KB" +dd if=/dev/zero of=test.file bs=1024 count=$tarsize +tar -c -f test.tar test.file +rm test.file + +$srcdir/virt-make-fs $params -- test.tar output.img + +rm test.tar output.img diff --git a/make-fs/virt-mak...
2014 Jan 27
2
[PATCH INCOMPLETE] Rewrite virt-make-fs in C (originally Perl).
I thought it would be easy to rewrite virt-make-fs in C. Two days later ... The Perl program uses a lot of external commands, which makes it pretty tedious to implement in C. Rich.
2014 Sep 16
5
[PATCH 0/3] tests: Introduce test harness for running tests.
These are my thoughts on adding a test harness to run tests instead of using automake. The aim of this exercise is to allow us to run the full test suite on an installed copy of libguestfs. Another aim is to allow us to work around all the limitations and problems of automake. The first patch makes an observation that since the ./run script sets up $PATH to contain all the directories