diff options
author | Peter Andersson <[email protected]> | 2012-07-03 17:23:00 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2012-07-06 16:29:24 +0200 |
commit | b0abb6972043d4240b763603075f6979a69b88ef (patch) | |
tree | 10e1725628cc726994093a89af19f0ea161d12a9 /lib/common_test/src/ct_framework.erl | |
parent | 3b34580548d5060bae35a0f787e1c80b4a294123 (diff) | |
download | otp-b0abb6972043d4240b763603075f6979a69b88ef.tar.gz otp-b0abb6972043d4240b763603075f6979a69b88ef.tar.bz2 otp-b0abb6972043d4240b763603075f6979a69b88ef.zip |
Make it possible to sort the HTML tables
OTP-9896
Introduce java scripts in the web pages to enable sorting
of table elements.
Diffstat (limited to 'lib/common_test/src/ct_framework.erl')
-rw-r--r-- | lib/common_test/src/ct_framework.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common_test/src/ct_framework.erl b/lib/common_test/src/ct_framework.erl index 11575cd0fb..afe7fd2f05 100644 --- a/lib/common_test/src/ct_framework.erl +++ b/lib/common_test/src/ct_framework.erl @@ -27,7 +27,7 @@ -export([init_tc/3, end_tc/3, end_tc/4, get_suite/2, get_all_cases/1]). -export([report/2, warn/1, error_notification/4]). --export([get_logopts/0, format_comment/1, get_html_wrapper/3]). +-export([get_logopts/0, format_comment/1, get_html_wrapper/4]). -export([error_in_suite/1, init_per_suite/1, end_per_suite/1, init_per_group/2, end_per_group/2]). @@ -1634,5 +1634,5 @@ format_comment(Comment) -> %%%----------------------------------------------------------------- %%% @spec get_html_wrapper(TestName, PrintLabel, Cwd) -> Header -get_html_wrapper(TestName, PrintLabel, Cwd) -> - ct_logs:get_ts_html_wrapper(TestName, PrintLabel, Cwd). +get_html_wrapper(TestName, PrintLabel, Cwd, TableCols) -> + ct_logs:get_ts_html_wrapper(TestName, PrintLabel, Cwd, TableCols). |