Displaying 2 results from an estimated 2 matches for "4557b02".
2020 Feb 10
3
[nbdkit PATCH] eval: Allow user override of 'missing'
...T
+
+The parameter C<missing> defines a script that will be called in place
+of any other callback not explicitly provided. If omitted, this
+defaults to the script "exit 2".
+
=back
=head1 ENVIRONMENT VARIABLES
diff --git a/tests/test-eval.sh b/tests/test-eval.sh
index 206c680..4557b02 100755
--- a/tests/test-eval.sh
+++ b/tests/test-eval.sh
@@ -42,7 +42,9 @@ cleanup_fn rm -f $files
nbdkit -U - eval \
get_size='echo 64M' \
pread='dd if=/dev/zero count=$3 iflag=count_bytes' \
+ missing='echo "in missing: $@" >> eval.out; e...
2020 Feb 10
0
Re: [nbdkit PATCH] eval: Allow user override of 'missing'
...nes a script that will be called in place
> +of any other callback not explicitly provided. If omitted, this
> +defaults to the script "exit 2".
> +
> =back
>
> =head1 ENVIRONMENT VARIABLES
> diff --git a/tests/test-eval.sh b/tests/test-eval.sh
> index 206c680..4557b02 100755
> --- a/tests/test-eval.sh
> +++ b/tests/test-eval.sh
> @@ -42,7 +42,9 @@ cleanup_fn rm -f $files
> nbdkit -U - eval \
> get_size='echo 64M' \
> pread='dd if=/dev/zero count=$3 iflag=count_bytes' \
> + missing='echo "in mis...