]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/test_rados_tool.sh: POSIX dd only accepts 'k' as multiplier 12699/head
authorWillem Jan Withagen <wjw@digiware.nl>
Wed, 28 Dec 2016 10:05:09 +0000 (11:05 +0100)
committerWillem Jan Withagen <wjw@digiware.nl>
Wed, 28 Dec 2016 11:13:29 +0000 (12:13 +0100)
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 <wjw@digiware.nl>
qa/workunits/rados/test_rados_tool.sh

index 334196be2df3e27f70e351d6abc7d8995d2700c3..c07cdf9565f55db14d982cf5e22a08b129eec53e 100755 (executable)
@@ -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