aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test/ct_test_support.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2013-01-22 01:23:41 +0100
committerPeter Andersson <[email protected]>2013-01-24 10:56:04 +0100
commitf48550f96253588fcc643fcd5774a3c3ccb49b8b (patch)
treea1cd0d2d7713d9ed0914ec134deb320138975b9b /lib/common_test/test/ct_test_support.erl
parent6e8de699f548762e2e6894d347e9dc285db11841 (diff)
downloadotp-f48550f96253588fcc643fcd5774a3c3ccb49b8b.tar.gz
otp-f48550f96253588fcc643fcd5774a3c3ccb49b8b.tar.bz2
otp-f48550f96253588fcc643fcd5774a3c3ccb49b8b.zip
Add tests and correct errors
OTP-9881
Diffstat (limited to 'lib/common_test/test/ct_test_support.erl')
-rw-r--r--lib/common_test/test/ct_test_support.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common_test/test/ct_test_support.erl b/lib/common_test/test/ct_test_support.erl
index fc572aa82f..1319fa4154 100644
--- a/lib/common_test/test/ct_test_support.erl
+++ b/lib/common_test/test/ct_test_support.erl
@@ -1132,6 +1132,8 @@ reformat([{_EH,#event{name=test_start,data=_}} | Events], EH) ->
[{EH,test_start,{'DEF',{'START_TIME','LOGDIR'}}} | reformat(Events, EH)];
reformat([{_EH,#event{name=test_done,data=_}} | Events], EH) ->
[{EH,test_done,{'DEF','STOP_TIME'}} | reformat(Events, EH)];
+reformat([{_EH,#event{name=tc_logfile,data=_}} | Events], EH) ->
+ reformat(Events, EH);
reformat([{_EH,#event{name=test_stats,data=Data}} | Events], EH) ->
[{EH,test_stats,Data} | reformat(Events, EH)];
%% use this to only print the last test_stats event: