diff options
author | Peter Andersson <[email protected]> | 2012-07-15 01:48:03 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2012-08-08 14:20:30 +0200 |
commit | 2a3fc026842241b0a1e1b2b1f691bd212499ffe0 (patch) | |
tree | 26734b39e09bcea382413a6570ee3874d4c906a2 /lib/common_test/src/ct_logs.erl | |
parent | bb1734e95a5f6a7315819c24bc1fdd799534c787 (diff) | |
download | otp-2a3fc026842241b0a1e1b2b1f691bd212499ffe0.tar.gz otp-2a3fc026842241b0a1e1b2b1f691bd212499ffe0.tar.bz2 otp-2a3fc026842241b0a1e1b2b1f691bd212499ffe0.zip |
Implement support for test case execution break/continue
Diffstat (limited to 'lib/common_test/src/ct_logs.erl')
-rw-r--r-- | lib/common_test/src/ct_logs.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_logs.erl b/lib/common_test/src/ct_logs.erl index 1ccbdc3718..73a66a8763 100644 --- a/lib/common_test/src/ct_logs.erl +++ b/lib/common_test/src/ct_logs.erl @@ -378,11 +378,11 @@ tc_print(Category,Format,Args) -> ok. get_heading(default) -> - io_lib:format("-----------------------------" + io_lib:format("\n-----------------------------" "-----------------------\n~s\n", [log_timestamp(now())]); get_heading(Category) -> - io_lib:format("-----------------------------" + io_lib:format("\n-----------------------------" "-----------------------\n~s ~w\n", [log_timestamp(now()),Category]). |