From b209c0ede472dcdd5f3a7269ef2b39a04c3294bf Mon Sep 17 00:00:00 2001 From: "H.Merijn Brand" Date: Tue, 19 Oct 2010 21:06:46 +0200 Subject: [PATCH] NetBSD uses multiples of 1k --- t/52_DGrow.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/52_DGrow.t b/t/52_DGrow.t index 357f62c..9a2e08f 100644 --- a/t/52_DGrow.t +++ b/t/52_DGrow.t @@ -12,7 +12,7 @@ my $x = ""; is (length ($x), 0, "Initial length = 0"); my %dd = DDump $x; ok ($dd{LEN} <= 16); -my $len = 10000; +my $len = 10240; ok (my $l = DGrow ($x, $len), "Set to $len"); is (length ($x), 0, "Variable content"); ok ($l >= $len, "returned LEN >= $len"); -- 2.11.4.GIT