diff options
| author | Emmanuel Dreyfus <manu@netbsd.org> | 2014-07-10 05:45:52 +0200 |
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2014-07-14 06:29:15 -0700 |
| commit | 210a59e48a52515615e440e2a6e1b650063c370b (patch) | |
| tree | d7b6c13f342fc7ca01c17216720cf52990bd70aa /tests/bugs/859927 | |
| parent | f637f2f101b13388187f8a6852d3ae6f1d9c2ad5 (diff) | |
Regression test portability: dd usage
NetBSD, FreeBSD, and MacOS X dd(1) bs argument uses m for megabyte, while
Linux uses M. Use bs=1024k instead of bs=1M for better compatibility.
BUG: 764655
Change-Id: I603f57adbc9b31f6d634b918726437fbfce42e03
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.org/8278
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Harshavardhana <harsha@harshavardhana.net>
Reviewed-by: Justin Clift <justin@gluster.org>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'tests/bugs/859927')
| -rwxr-xr-x | tests/bugs/859927/repl.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs/859927/repl.t b/tests/bugs/859927/repl.t index 9ac524fc1bd..0094f43dfca 100755 --- a/tests/bugs/859927/repl.t +++ b/tests/bugs/859927/repl.t @@ -11,7 +11,7 @@ TEST pidof glusterd function create_setup_for_self_heal { file=$1 kill_brick $V0 $H0 $B0/${V0}1 - dd of=$file if=/dev/urandom bs=1M count=1 2>&1 > /dev/null + dd of=$file if=/dev/urandom bs=1024k count=1 2>&1 > /dev/null $CLI volume start $V0 force } |
