aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_logs.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-09-10 14:20:36 +0200
committerLukas Larsson <[email protected]>2010-09-10 14:20:36 +0200
commit3bb93b0491414fa571e284144bdc6de3e998273a (patch)
tree7a335caa1a4f39d073add45572cc3b5b0330dc38 /lib/common_test/src/ct_logs.erl
parente5bcc889833a47d03fd427573ee0551977353f24 (diff)
parent2162c7f0f1e9abab7126a0606172ae97deaba44d (diff)
downloadotp-3bb93b0491414fa571e284144bdc6de3e998273a.tar.gz
otp-3bb93b0491414fa571e284144bdc6de3e998273a.tar.bz2
otp-3bb93b0491414fa571e284144bdc6de3e998273a.zip
Merge branch 'peppe/common_test/dev/OTP-8753' into dev
* peppe/common_test/dev/OTP-8753: Fix problem with prepared_tests tuple not being recognized Add verification terms to test suite Fix various test suite, makefile, and doc related problems Fix error in the repeat_until_* group property handling Add test suite for groups with repeat property Add verification events to sequence group test suite Fix error in handling of sequence groups Fix error in test suite Fix problems with sequences and sub-groups Add test cases to sequence suite Fix error with group term in ct:run_test/1 Add test suite to examplify problem with nested groups in a sequence
Diffstat (limited to 'lib/common_test/src/ct_logs.erl')
-rw-r--r--lib/common_test/src/ct_logs.erl6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_logs.erl b/lib/common_test/src/ct_logs.erl
index 3684ff462f..f8ace73cbf 100644
--- a/lib/common_test/src/ct_logs.erl
+++ b/lib/common_test/src/ct_logs.erl
@@ -464,9 +464,11 @@ logger_loop(State) ->
{'EXIT',_Reason} ->
Fd = State#logger_state.ct_log_fd,
io:format(Fd,
- "Logging fails! Str: ~p, Args: ~p~n",
+ "Logging fails! "
+ "Str: ~p, Args: ~p~n",
[Str,Args]),
- %% stop the testcase, we need to see the fault
+ %% stop the testcase, we need
+ %% to see the fault
exit(Pid,logging_failed),
ok;
IoStr when IoList == [] ->