diff options
author | Peter Andersson <[email protected]> | 2014-05-02 11:00:26 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2014-05-02 11:00:26 +0200 |
commit | 43fe944a466c47cca84cc4b02371004847927355 (patch) | |
tree | 148a5071a0d882d14261710a8c806d324bc334b8 /lib/common_test/src/ct.erl | |
parent | 10f47281bf94e7e3ed98f97f3c1531036edce9cc (diff) | |
parent | af8a352109ba87f7960ab46bd6ed1d237b87ed7c (diff) | |
download | otp-43fe944a466c47cca84cc4b02371004847927355.tar.gz otp-43fe944a466c47cca84cc4b02371004847927355.tar.bz2 otp-43fe944a466c47cca84cc4b02371004847927355.zip |
Merge remote branch 'origin/peppe/common_test/ct_comment_problem' into maint
* origin/peppe/common_test/ct_comment_problem:
Fix problem with comments getting lost when running parallel test cases
Diffstat (limited to 'lib/common_test/src/ct.erl')
-rw-r--r-- | lib/common_test/src/ct.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct.erl b/lib/common_test/src/ct.erl index 241cd928b7..85afdc7834 100644 --- a/lib/common_test/src/ct.erl +++ b/lib/common_test/src/ct.erl @@ -773,7 +773,7 @@ comment(Format, Args) when is_list(Format), is_list(Args) -> send_html_comment(Comment) -> Html = "<font color=\"green\">" ++ Comment ++ "</font>", - ct_util:set_testdata({comment,Html}), + ct_util:set_testdata({{comment,group_leader()},Html}), test_server:comment(Html). %%%----------------------------------------------------------------- |