search for: 1ffc668

Displaying 2 results from an estimated 2 matches for "1ffc668".

2018 Sep 11
0
[PATCH nbdkit 4/4] tests: Add a helper function which waits for nbdkit to start up.
...t -f cow.pid; then - echo "$0: PID file was not created" - exit 1 -fi - +start_nbdkit -P cow.pid -U cow.sock --filter=cow file cow-base.img pid="$(cat cow.pid)" # Kill the nbdkit process on exit. diff --git a/tests/test-data-7E.sh b/tests/test-data-7E.sh index 8327511..1ffc668 100755 --- a/tests/test-data-7E.sh +++ b/tests/test-data-7E.sh @@ -34,6 +34,7 @@ # Test the data plugin creating a 7 EB partitioned disk, and # the partition filter on top. +source functions.sh set -e set -x @@ -47,7 +48,7 @@ if ! qemu-io --help >/dev/null; then fi # Run nbdkit. -nbd...
2018 Sep 11
7
[PATCH nbdkit 0/4] tests: Move common functions into tests/functions.sh
Combine much common code into tests/functions.sh. Patch 1: Preparation for patch 3. Patch 2: Fix a long-standing bug in how man pages links are generated. Patch 3: Common code for iterating a test function over every plugin. Patch 4: Common code for starting nbdkit in a test and waiting for the PID file to appear. This is the largest and most complex of the patches but is