diff options
author | Erlang/OTP <[email protected]> | 2019-06-14 08:47:47 +0200 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2019-06-14 08:47:47 +0200 |
commit | ba04662d2b37458915b177ba8b6d77641120ac13 (patch) | |
tree | 9385f67b6137ca760d04329b182c79f00e6d353e /lib/common_test | |
parent | e8e473bc852b5fa763e7c2c5a696c4deb892d10a (diff) | |
download | otp-ba04662d2b37458915b177ba8b6d77641120ac13.tar.gz otp-ba04662d2b37458915b177ba8b6d77641120ac13.tar.bz2 otp-ba04662d2b37458915b177ba8b6d77641120ac13.zip |
Prepare release
Diffstat (limited to 'lib/common_test')
-rw-r--r-- | lib/common_test/doc/src/notes.xml | 31 | ||||
-rw-r--r-- | lib/common_test/vsn.mk | 2 |
2 files changed, 32 insertions, 1 deletions
diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index d1b9bc320a..21fb46f665 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -33,6 +33,37 @@ <file>notes.xml</file> </header> +<section><title>Common_Test 1.15.4.3</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + If a ct hook is installed in the <c>suite/0</c> function + in a test suite, then the hook's <c>terminate/1</c> + function would be called several times without it's + <c>init/2</c> function being called first. This is now + corrected.</p> + <p> + Own Id: OTP-15863 Aux Id: ERIERL-370 </p> + </item> + <item> + <p> + If <c>init_per_testcase</c> fails, the test itself is + skipped. According to the documentation, it should be + possible to change the result to failed in a hook + function. The only available hook function in this case + is <c>post_init_per_testcase</c>, but changing the return + value there did not affect the test case result. This is + now corrected.</p> + <p> + Own Id: OTP-15869 Aux Id: ERIERL-350 </p> + </item> + </list> + </section> + +</section> + <section><title>Common_Test 1.15.4.2</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk index cacf400012..469d30b146 100644 --- a/lib/common_test/vsn.mk +++ b/lib/common_test/vsn.mk @@ -1 +1 @@ -COMMON_TEST_VSN = 1.15.4.2 +COMMON_TEST_VSN = 1.15.4.3 |