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/bug-895235.t | |
| 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/bug-895235.t')
| -rw-r--r-- | tests/bugs/bug-895235.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs/bug-895235.t b/tests/bugs/bug-895235.t index 0764b50d4e4..d02120c2796 100644 --- a/tests/bugs/bug-895235.t +++ b/tests/bugs/bug-895235.t @@ -15,7 +15,7 @@ TEST $CLI volume start $V0 TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id=$V0 $M0 --direct-io-mode=enable TEST gluster volume profile $V0 start -TEST dd of=$M0/a if=/dev/zero bs=1M count=1 oflag=append +TEST dd of=$M0/a if=/dev/zero bs=1024k count=1 oflag=append finodelk_max_latency=$($CLI volume profile $V0 info | grep FINODELK | awk 'BEGIN {max = 0} {if ($6 > max) max=$6;} END {print max}' | cut -d. -f 1 | egrep "[0-9]{7,}") TEST [ -z $finodelk_max_latency ] |
