From 0f8afe80c6582f7affd17f36dc9cb48cc7946713 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 14 Mar 2016 10:46:23 +0100 Subject: Prepare release --- lib/common_test/doc/src/notes.xml | 85 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) (limited to 'lib/common_test/doc') diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index 57a8c6c9e2..ff51b101cc 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -33,6 +33,91 @@ notes.xml +
Common_Test 1.12 + +
Fixed Bugs and Malfunctions + + +

+ This update fixes the problem with generic printouts in + the html log file not having special characters escaped. + Printouts made with io:format/2 and + ct:pal/2 will now get special characters escaped + automatically. Common Test will not attempt to escape + characters printed with ct:log/2 since it is + assumed that the user may want to print html tagged data + using this function. A new function, ct:log/5, has + been added, which offers optional escaping of characters. + The latter function may also be used to print text to the + log without headers and CSS class wrapping (analogue to + io:format/2).

+

+ Own Id: OTP-13003 Aux Id: seq13005

+
+ +

+ Commit 4cf832f1ad163f5b25dd8a6f2d314c169c23c82f + erroneously removed logging of open and close of netconf + connections. This is now corrected.

+

+ Own Id: OTP-13386

+
+ +

+ The directory to which nodes started with + test_server:start_node/3 writes their + erl_crash.dump is changed. The crashdumps were earlier + written to the directory of test_server.beam, but in + later versions of Microsoft Windows this is no longer + writable (even for administrators). The framework + (common_test) log directory is now used instead.

+

+ Own Id: OTP-13388

+
+
+
+ + +
Improvements and New Features + + +

+ This update makes it possible to specify multiple + instances of the same group or test case in one test + specification term in order to repeat execution. Example: + {groups, "./", my_SUITE, [my_group, my_group], {cases, + all}}, or {cases, "./", my_SUITE, [my_tc, my_tc, + my_tc]}.

+

+ Own Id: OTP-13241 Aux Id: seq12979

+
+ +

+ Two new CT hook functions have been added: + post_init_per_testcase/4 and + pre_end_per_testcase/3. With these hook functions, + it is possible to perform arbitrary actions (including + modifications of test execution, test state and results) + immediately before and after the execution of the test + case.

+

+ Own Id: OTP-13242 Aux Id: seq12991

+
+ +

+ The ct_netconfc was earlier very restrictive as to + which SSH options the user could set. This is now + changed, and any SSH option is now allowed. The netconf + client will simply pass on any option, which it does not + recognize, to SSH.

+

+ Own Id: OTP-13338 Aux Id: seq13053,seq13069

+
+
+
+ +
+
Common_Test 1.11.2
Fixed Bugs and Malfunctions -- cgit v1.2.3