Skip to content

Commit

Permalink
change of count for bing close to 77M
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgios Koloventzos committed Aug 7, 2015
1 parent 5fc149c commit f699306
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/dd_read.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
#!/bin/bash

#the count sould be changed also when we change bs
source common.sh
DEFAULT_SIZE="1M"
DEFAULT_SIZE="32k"
SIZE=${1:-$DEFAULT_SIZE}
REPTS=1
dd if=/dev/urandom bs=1M count=500 of=foo > /dev/null 2>&1
dd if=/dev/urandom bs=$SIZE count=2600 of=foo > /dev/null 2>&1

cat > dd_cmd.sh << EOF
#!/bin/bash
dd if=foo bs=$SIZE count=2406 of=/dev/null
dd if=foo bs=$SIZE count=2600 of=/dev/null
sync
EOF
chmod a+x dd_cmd.sh
Expand Down

0 comments on commit f699306

Please sign in to comment.