aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2014-04-30 00:25:42 +0200
committerPeter Andersson <[email protected]>2014-04-30 00:25:42 +0200
commitaf8a352109ba87f7960ab46bd6ed1d237b87ed7c (patch)
tree8fed4dc185fb67a922ae81650f9cd08011ce2a3a /lib/common_test/src/ct.erl
parentaca0b6182b039333b4c963938878d9eecc85e5a1 (diff)
downloadotp-af8a352109ba87f7960ab46bd6ed1d237b87ed7c.tar.gz
otp-af8a352109ba87f7960ab46bd6ed1d237b87ed7c.tar.bz2
otp-af8a352109ba87f7960ab46bd6ed1d237b87ed7c.zip
Fix problem with comments getting lost when running parallel test cases
OTP-11898
Diffstat (limited to 'lib/common_test/src/ct.erl')
-rw-r--r--lib/common_test/src/ct.erl2
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).
%%%-----------------------------------------------------------------