aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_logs.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2010-08-27 17:54:40 +0200
committerPeter Andersson <[email protected]>2010-09-06 15:08:58 +0200
commit2162c7f0f1e9abab7126a0606172ae97deaba44d (patch)
tree1ef6131fadaee9c95645b02f37b4543fafd3aed5 /lib/common_test/src/ct_logs.erl
parent0ec995ee9acdb82e7b03f7b48931119e296bf42e (diff)
downloadotp-2162c7f0f1e9abab7126a0606172ae97deaba44d.tar.gz
otp-2162c7f0f1e9abab7126a0606172ae97deaba44d.tar.bz2
otp-2162c7f0f1e9abab7126a0606172ae97deaba44d.zip
Fix problem with prepared_tests tuple not being recognized
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 f8ae7202e6..c716111f4d 100644
--- a/lib/common_test/src/ct_logs.erl
+++ b/lib/common_test/src/ct_logs.erl
@@ -461,9 +461,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 == [] ->