From: Nathaniel Clark Date: Tue, 18 Jun 2013 19:50:58 +0000 (-0400) Subject: LU-2903 tests: Increase zfs log size allowed in fs_log_size() X-Git-Tag: 2.4.52~58 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=053b23b16516a9ffe427dde1651407303c401dab;p=fs%2Flustre-release.git LU-2903 tests: Increase zfs log size allowed in fs_log_size() The log size in ZFS has been seen to be as much as 384. This should allow the affected tests pass without false-negatives. Signed-off-by: Nathaniel Clark Change-Id: I9a1f4c25b9c14de0c3ea13f5064092fec86f7b46 Reviewed-on: http://review.whamcloud.com/6692 Tested-by: Hudson Tested-by: Maloo Reviewed-by: Keith Mannthey Reviewed-by: Alex Zhuravlev Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 39e2cf2..3182e26 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -593,7 +593,7 @@ fs_log_size() { local size=0 case $fstype in ldiskfs) size=50;; # largest seen is 44, leave some headroom - zfs) size=256;; + zfs) size=400;; # largest seen is 384 esac echo -n $size