diff options
author | Björn Gustavsson <[email protected]> | 2016-02-25 07:38:39 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-02-25 14:49:49 +0100 |
commit | 5fe95cec32ddc92f6a483c24f6f591586ba065f7 (patch) | |
tree | a5363e6e4a9ad07656db97db377f9975fcc3d05c /lib/compiler/test/regressions_SUITE.erl | |
parent | 720ad8d62a908fa52ed2dcd34f30a01a940b2022 (diff) | |
download | otp-5fe95cec32ddc92f6a483c24f6f591586ba065f7.tar.gz otp-5fe95cec32ddc92f6a483c24f6f591586ba065f7.tar.bz2 otp-5fe95cec32ddc92f6a483c24f6f591586ba065f7.zip |
Modernize use of timetraps
Either rely on the default 30 minutes timetrap, or set the timeout
using the supported methods in common_test.
Diffstat (limited to 'lib/compiler/test/regressions_SUITE.erl')
-rw-r--r-- | lib/compiler/test/regressions_SUITE.erl | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/lib/compiler/test/regressions_SUITE.erl b/lib/compiler/test/regressions_SUITE.erl index a8caa34c60..0131a2bdbd 100644 --- a/lib/compiler/test/regressions_SUITE.erl +++ b/lib/compiler/test/regressions_SUITE.erl @@ -21,26 +21,23 @@ -module(regressions_SUITE). -include_lib("common_test/include/ct.hrl"). --export([all/0, groups/0, init_per_testcase/2,end_per_testcase/2]). - +-export([all/0,groups/0,init_per_testcase/2,end_per_testcase/2,suite/0]). -export([maps/1]). groups() -> [{p,test_lib:parallel(), [maps]}]. -% Default timetrap timeout (set in init_per_testcase). --define(default_timeout, ?t:minutes(2)). - init_per_testcase(_Case, Config) -> - ?line Dog = ?t:timetrap(?default_timeout), - [{watchdog, Dog} | Config]. + Config. -end_per_testcase(_Case, Config) -> - Dog = ?config(watchdog, Config), - test_server:timetrap_cancel(Dog), +end_per_testcase(_Case, _Config) -> ok. +suite() -> + [{ct_hooks,[ts_install_cth]}, + {timetrap,{minutes,2}}]. + all() -> test_lib:recompile(?MODULE), [{group,p}]. |