diff options
author | Peter Andersson <[email protected]> | 2011-11-15 13:43:36 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2011-11-18 14:59:10 +0100 |
commit | fd55862c24edbb47e7c632395d21bd1aeefd6d42 (patch) | |
tree | 29cf9339ecfd778dd1131b20a5ead5976dcd69f5 /lib/common_test/src/ct_framework.erl | |
parent | 196a453d877e637ea0128ababc07b475492bad37 (diff) | |
download | otp-fd55862c24edbb47e7c632395d21bd1aeefd6d42.tar.gz otp-fd55862c24edbb47e7c632395d21bd1aeefd6d42.tar.bz2 otp-fd55862c24edbb47e7c632395d21bd1aeefd6d42.zip |
Make absolute paths in log files relative
Diffstat (limited to 'lib/common_test/src/ct_framework.erl')
-rw-r--r-- | lib/common_test/src/ct_framework.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/common_test/src/ct_framework.erl b/lib/common_test/src/ct_framework.erl index 26c71dfb42..0897675591 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/2]). +-export([get_logopts/0, format_comment/1, get_html_wrapper/3]). -export([error_in_suite/1, ct_init_per_group/2, ct_end_per_group/2]). @@ -1411,6 +1411,6 @@ format_comment(Comment) -> "<font color=\"green\">" ++ Comment ++ "</font>". %%%----------------------------------------------------------------- -%%% @spec get_html_wrapper(TestName, PrintLabel) -> Header -get_html_wrapper(TestName, PrintLabel) -> - ct_logs:get_ts_html_wrapper(TestName, PrintLabel). +%%% @spec get_html_wrapper(TestName, PrintLabel, Cwd) -> Header +get_html_wrapper(TestName, PrintLabel, Cwd) -> + ct_logs:get_ts_html_wrapper(TestName, PrintLabel, Cwd). |