diff options
author | Lukas Larsson <[email protected]> | 2019-01-08 16:04:43 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2019-01-15 16:53:45 +0100 |
commit | 840eea40305ffc323572b39cc139ffaf7cf2ade6 (patch) | |
tree | 74f6a21dded5f1e30fc67c2157af7416c77b3858 | |
parent | 75a88f6ba479be85e576c1db303eaed9a92f8979 (diff) | |
download | otp-840eea40305ffc323572b39cc139ffaf7cf2ade6.tar.gz otp-840eea40305ffc323572b39cc139ffaf7cf2ade6.tar.bz2 otp-840eea40305ffc323572b39cc139ffaf7cf2ade6.zip |
inets: Decrease benchmark TC timeout
-rw-r--r-- | lib/inets/test/httpd_bench_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/inets/test/httpd_bench_SUITE.erl b/lib/inets/test/httpd_bench_SUITE.erl index aeaf99204d..087516f56c 100644 --- a/lib/inets/test/httpd_bench_SUITE.erl +++ b/lib/inets/test/httpd_bench_SUITE.erl @@ -37,7 +37,8 @@ %% Common Test interface functions ----------------------------------- %%-------------------------------------------------------------------- suite() -> - [{ct_hooks,[{ts_install_cth,[{nodenames,2}]}]}]. + [{timetrap, {minutes, 1}}, + {ct_hooks,[{ts_install_cth,[{nodenames,2}]}]}]. all() -> [ |