diff options
author | Peter Andersson <[email protected]> | 2013-11-14 00:19:03 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2013-11-18 18:08:18 +0100 |
commit | 98c0e6608100da393df24722afea159a1f5dcc22 (patch) | |
tree | 465dc2d9e548f72d2eba8dd84dff23a93f974fdd /lib/common_test/src/ct_logs.erl | |
parent | af1891a1415d9aedb7de866639cf997c31b98e35 (diff) | |
download | otp-98c0e6608100da393df24722afea159a1f5dcc22.tar.gz otp-98c0e6608100da393df24722afea159a1f5dcc22.tar.bz2 otp-98c0e6608100da393df24722afea159a1f5dcc22.zip |
Fix problems with info functions and add more tests
Diffstat (limited to 'lib/common_test/src/ct_logs.erl')
-rw-r--r-- | lib/common_test/src/ct_logs.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_logs.erl b/lib/common_test/src/ct_logs.erl index 1a6e4d31a8..a7fb45a4e4 100644 --- a/lib/common_test/src/ct_logs.erl +++ b/lib/common_test/src/ct_logs.erl @@ -1249,7 +1249,8 @@ make_one_index_entry1(SuiteName, Link, Label, Success, Fail, UserSkip, AutoSkip, integer_to_list(NotBuilt),"</a></td>\n"] end, FailStr = - if Fail > 0 -> + if (Fail > 0) or (NotBuilt > 0) or + ((Success+Fail+UserSkip+AutoSkip) == 0) -> ["<font color=\"red\">", integer_to_list(Fail),"</font>"]; true -> @@ -1904,7 +1905,8 @@ runentry(Dir, undefined, _) -> runentry(Dir, Totals={Node,Label,Logs, {TotSucc,TotFail,UserSkip,AutoSkip,NotBuilt}}, Index) -> TotFailStr = - if TotFail > 0 -> + if (TotFail > 0) or (NotBuilt > 0) or + ((TotSucc+TotFail+UserSkip+AutoSkip) == 0) -> ["<font color=\"red\">", integer_to_list(TotFail),"</font>"]; true -> |