Skip to content

Commit

Permalink
Extend test timeouts 3x to avoid erratic test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
slfritchie committed Feb 9, 2011
1 parent b4c0680 commit 4cb2ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/bitcask_qc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ prop_fold() ->


prop_merge_test_() ->
{timeout, 60, fun() -> qc(prop_merge()) end}.
{timeout, 3*60, fun() -> qc(prop_merge()) end}.

merge1_test() ->
?assert(eqc:check(prop_merge(),
Expand All @@ -155,7 +155,7 @@ merge3_test() ->
1,1}])).

prop_fold_test_() ->
{timeout, 60, fun() -> qc(prop_fold()) end}.
{timeout, 3*60, fun() -> qc(prop_fold()) end}.


-endif.
Expand Down

0 comments on commit 4cb2ab2

Please sign in to comment.