summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Joseph Davis <davisp@apache.org>2009-09-29 14:57:27 +0000
committerPaul Joseph Davis <davisp@apache.org>2009-09-29 14:57:27 +0000
commitae793605322971f38d85960c9e27bb29b35d27ad (patch)
tree9c9c9e6ffbdcccffaba59a92493e8e2a2171634d /test
parente5813d55b0f65d30b3081d0f1a5cd2e7b6f900ed (diff)
Fixed a memory usage test.
Noah reported that forcing garbage collection only worked when allocating more terms. This ups the test number to what worked for him. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@819977 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rwxr-xr-xtest/etap/040-util.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/etap/040-util.t b/test/etap/040-util.t
index 38f82851..c4dffc4d 100755
--- a/test/etap/040-util.t
+++ b/test/etap/040-util.t
@@ -80,7 +80,7 @@ test() ->
IntsToAGazillion = lists:seq(1, 200000),
LotsOfData = lists:map(
fun(Int) -> {Int, <<"foobar">>} end,
- lists:seq(1, 200000)),
+ lists:seq(1, 500000)),
etap:ok(couch_util:should_flush(),
"Allocation 200K tuples puts us above the memory threshold.")
end,