From 25237481ccccd3ddfa74582dc267632ad618ba30 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 9 Dec 2013 20:12:33 +0100 Subject: Prepare release --- lib/test_server/doc/src/notes.xml | 48 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) (limited to 'lib/test_server/doc') diff --git a/lib/test_server/doc/src/notes.xml b/lib/test_server/doc/src/notes.xml index c83fc9d82b..d68943089e 100644 --- a/lib/test_server/doc/src/notes.xml +++ b/lib/test_server/doc/src/notes.xml @@ -32,6 +32,54 @@ notes.xml +
Test_Server 3.6.4 + +
Fixed Bugs and Malfunctions + + +

The way Common Test handles skipping of test cases has + been updated. In previous versions, returning + {skip,Reason} from a configuration function (such + as init_per_suite or init_per_group), resulted in all + affected test cases getting skipped with status + auto_skipped. This was inappropriate, since this + status is supposed to be used to inform that Common Test + has taken the initiative to skip something (e.g. a test + case group if init_per_group failed). Therefore, in this + version of Common Test, whenever the user skips a suite, + group, or individual test case (by means of a + configuration function or test specification term), the + affected test cases get the status user_skipped + instead.

This update has meant a few changes that + may affect Common Test users in various ways: + The test results and statistics will be affected, + which is important to know when running regression tests + and comparing results to previous test runs. + Users that read or parse the textual log file + suite.log will notice that an auto skipped + function is now reported as auto_skipped rather + than skipped as before. When + require fails in an info function (such as suite/0 + or group/1), all affected configuration functions and + test cases are marked as auto_skipped. + If Common Test detects an error in the test suite + (such as e.g. an invalid all/0 function), all affected + configuration functions and test cases are marked as + auto_skipped. If a repeated test run + session reaches a deadline with force_stop + enabled, all remaining test cases are marked as + auto_skipped rather than user_skipped as + before. The event messages that Common Test + generates during test runs have been affected by this + update. For details see OTP-11524.

+

+ Own Id: OTP-11305 Aux Id: OTP-11524

+
+
+
+ +
+
Test_Server 3.6.3
Fixed Bugs and Malfunctions -- cgit v1.2.3