diff options
author | Dan Gudmundsson <[email protected]> | 2012-10-30 16:14:21 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-10-30 16:14:21 +0100 |
commit | f4003ae4ff6c53bdcffb4638eeb36ec737d8bdd2 (patch) | |
tree | 1ac379e674a144c1c54d23c2ac1c5e0c9eb8f24d /lib/stdlib/test/gen_server_SUITE.erl | |
parent | a8b2ba096dc48a29af52fd68070089d4bbb37483 (diff) | |
parent | f17020af337cf34560e939d822229262a214f28d (diff) | |
download | otp-f4003ae4ff6c53bdcffb4638eeb36ec737d8bdd2.tar.gz otp-f4003ae4ff6c53bdcffb4638eeb36ec737d8bdd2.tar.bz2 otp-f4003ae4ff6c53bdcffb4638eeb36ec737d8bdd2.zip |
Merge branch 'dgud/test-fixes'
* dgud/test-fixes:
test: fix timetraps
kernel: Extend test timeout for cover tests
stdlib: Fix test timeouts in cover runs
runtime_tools: Fix failing testcase
Diffstat (limited to 'lib/stdlib/test/gen_server_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/gen_server_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/stdlib/test/gen_server_SUITE.erl b/lib/stdlib/test/gen_server_SUITE.erl index 2abb01ba24..dffeadb423 100644 --- a/lib/stdlib/test/gen_server_SUITE.erl +++ b/lib/stdlib/test/gen_server_SUITE.erl @@ -1046,8 +1046,9 @@ call_with_huge_message_queue(Config) when is_list(Config) -> io:format("Time for empty message queue: ~p", [Time]), io:format("Time for huge message queue: ~p", [NewTime]), + IsCover = test_server:is_cover(), case (NewTime+1) / (Time+1) of - Q when Q < 10 -> + Q when Q < 10; IsCover -> ok; Q -> io:format("Q = ~p", [Q]), |