From: Willem Jan Withagen Date: Wed, 28 Dec 2016 10:05:09 +0000 (+0100) Subject: qa/test_rados_tool.sh: POSIX dd only accepts 'k' as multiplier X-Git-Tag: v12.0.0~346^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F12699%2Fhead;p=ceph.git 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 --- diff --git a/qa/workunits/rados/test_rados_tool.sh b/qa/workunits/rados/test_rados_tool.sh index 334196be2df3..c07cdf9565f5 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