diff options
author | Peter Andersson <[email protected]> | 2017-03-06 09:36:30 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2017-03-06 09:36:30 +0100 |
commit | b089b27a486e7175c1145db61d464922a46cad65 (patch) | |
tree | 068bb28abcd4dfcba253d4f343333d68e8a22fcd /lib/common_test/src/ct_testspec.erl | |
parent | 0e0155410734e04556ceecb1222dd2ef956b4177 (diff) | |
parent | a46cce8e797251e4e5316e81de75877703a43a99 (diff) | |
download | otp-b089b27a486e7175c1145db61d464922a46cad65.tar.gz otp-b089b27a486e7175c1145db61d464922a46cad65.tar.bz2 otp-b089b27a486e7175c1145db61d464922a46cad65.zip |
Merge branch 'peppe/common_test/multiply_timetraps/OTP-14210' into maint
* peppe/common_test/multiply_timetraps/OTP-14210:
Fix multiply/scale_timetraps in testspecs not working
OTP-14210
Diffstat (limited to 'lib/common_test/src/ct_testspec.erl')
-rw-r--r-- | lib/common_test/src/ct_testspec.erl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/common_test/src/ct_testspec.erl b/lib/common_test/src/ct_testspec.erl index 16001ce4c8..466a2c7658 100644 --- a/lib/common_test/src/ct_testspec.erl +++ b/lib/common_test/src/ct_testspec.erl @@ -1158,6 +1158,11 @@ handle_data(verbosity,Node,VLvls,_Spec) when is_list(VLvls) -> VLvls1 = lists:map(fun(VLvl = {_Cat,_Lvl}) -> VLvl; (Lvl) -> {'$unspecified',Lvl} end, VLvls), [{Node,VLvls1}]; +handle_data(multiply_timetraps,Node,Mult,_Spec) when is_integer(Mult) -> + [{Node,Mult}]; +handle_data(scale_timetraps,Node,Scale,_Spec) when Scale == true; + Scale == false -> + [{Node,Scale}]; handle_data(silent_connections,Node,all,_Spec) -> [{Node,[all]}]; handle_data(silent_connections,Node,Conn,_Spec) when is_atom(Conn) -> @@ -1176,6 +1181,8 @@ should_be_added(Tag,Node,_Data,Spec) -> Tag == label; Tag == auto_compile; Tag == abort_if_missing_suites; Tag == stylesheet; Tag == verbosity; + Tag == multiply_timetraps; + Tag == scale_timetraps; Tag == silent_connections -> lists:keymember(ref2node(Node,Spec#testspec.nodes),1, read_field(Spec,Tag)) == false; |