diff options
author | Björn Gustavsson <[email protected]> | 2012-11-08 14:49:36 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-11-08 14:49:36 +0100 |
commit | a1ba0ade00a08968d289912c8a8b709417ba80c5 (patch) | |
tree | c41db49405fe6b9d905abbe059d4ecf286d0072d /lib/test_server/src/test_server.erl | |
parent | 27cadfdfb196d29cc237a7938fe97671d40264a6 (diff) | |
parent | f816de97c1fdbb96ca09a8980dab32ad2e1785e7 (diff) | |
download | otp-a1ba0ade00a08968d289912c8a8b709417ba80c5.tar.gz otp-a1ba0ade00a08968d289912c8a8b709417ba80c5.tar.bz2 otp-a1ba0ade00a08968d289912c8a8b709417ba80c5.zip |
Merge branch 'bjorn/ct/minor-corrections'
* bjorn/ct/minor-corrections:
test_server_io: Correct a few comments
Handle ct:abort_current_testcase/1 when executing parallel groups
Make sure that "Cover analysing..." is written to stdout
Make sure that "Testing..." is not written if testing has finished
Diffstat (limited to 'lib/test_server/src/test_server.erl')
-rw-r--r-- | lib/test_server/src/test_server.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test_server/src/test_server.erl b/lib/test_server/src/test_server.erl index 2a45ace8c0..1d3394e0ca 100644 --- a/lib/test_server/src/test_server.erl +++ b/lib/test_server/src/test_server.erl @@ -240,7 +240,7 @@ do_cover_compile1([]) -> %% this is only recommended if the erlang node is being terminated %% after the test is completed. cover_analyse(Analyse,Modules,Stop) -> - io:fwrite("Cover analysing...\n",[]), + print(stdout, "Cover analysing...\n", []), DetailsFun = case Analyse of {details,Dir} -> |