Browse Source

Fiddle with test timeouts to accomodate slower machines

pull/108/head
Andrew Thompson 12 years ago
parent
commit
2bb8feb6b0
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      test/trunc_io_eqc.erl

+ 3
- 3
test/trunc_io_eqc.erl View File

@ -36,11 +36,11 @@
%%====================================================================
eqc_test_() ->
{timeout, 30,
{timeout, 60,
{spawn,
[
{timeout, 15, ?_assertEqual(true, eqc:quickcheck(eqc:testing_time(14, ?QC_OUT(prop_format()))))},
{timeout, 15, ?_assertEqual(true, eqc:quickcheck(eqc:testing_time(14, ?QC_OUT(prop_equivalence()))))}
{timeout, 30, ?_assertEqual(true, eqc:quickcheck(eqc:testing_time(14, ?QC_OUT(prop_format()))))},
{timeout, 30, ?_assertEqual(true, eqc:quickcheck(eqc:testing_time(14, ?QC_OUT(prop_equivalence()))))}
]
}}.

Loading…
Cancel
Save