From 4b9b5624658faad10335e4e23872b537b90f8470 Mon Sep 17 00:00:00 2001 From: Willem Jan Withagen Date: Wed, 28 Dec 2016 11:05:09 +0100 Subject: [PATCH] qa/test_rados_tool.sh: POSIX dd only accepts 'k' as multiplier FreeBSD does not want KB as 1k multiplier. see also: http://www.unix.com/man-page/posix/1posix/dd/ Signed-off-by: Willem Jan Withagen --- qa/workunits/rados/test_rados_tool.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/workunits/rados/test_rados_tool.sh b/qa/workunits/rados/test_rados_tool.sh index 334196be2df..c07cdf9565f 100755 --- a/qa/workunits/rados/test_rados_tool.sh +++ b/qa/workunits/rados/test_rados_tool.sh @@ -560,7 +560,7 @@ function test_put() cleanup # create file in local fs - dd if=/dev/urandom of=rados_object_10k bs=1KB count=10 + dd if=/dev/urandom of=rados_object_10k bs=1K count=10 # test put command $RADOS_TOOL -p $POOL put $OBJ ./rados_object_10k -- 2.47.3