Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-07 | common_test: Remove EDoc documentation in internal modules | Hans Bolinder | |
2017-06-16 | [ct] Print unicode atoms and strings correctly in common_test logs | Siri Hansen | |
And use correct encoding when printing to files. | |||
2017-05-04 | Update copyright year | Raimo Niskanen | |
2017-02-20 | [ct] Fix hooks and fail when one of init/end_per_* does not exit | Siri Hansen | |
The following bugs are corrected: - if init_per_suite is exported from a test suite, but not end_per_suite, then pre/post_end_per_suite will be called with Suite=ct_framework instead of the correct suite name. - if end_per_group is exported from a suite, but not init_per_group, then end_per_group is never called. According to the documentation, if implementing an init config function, you must also implement the end config function, so the two scenarios above are really not allowed. To make this more visible, common_test will now mark the non-exported config function as failed with reason 'undef' if the other function is exported. For example, if init_per_suite is exported, but not end_per_suite, then end_per_suite will be marked as failed with reason undef. (If none of them exist, then they will both be marked as passed since the default functions in ct_framework are called instead.) All hook functions are always called with the correct suite name, i.e. never with Suite=ct_framework. Conflicts: lib/common_test/test/ct_hooks_SUITE.erl | |||
2016-06-07 | ct_groups: Fix unmatched_return warnings | Zandra | |
2016-05-04 | Merge branch 'maint-18' | Henrik Nord | |
Conflicts: OTP_VERSION lib/common_test/test/ct_hooks_SUITE_data/cth/tests/ct_update_config_SUITE.erl lib/common_test/vsn.mk | |||
2016-05-02 | Fix bug using the wrong lists search function | Peter Andersson | |
2016-03-15 | update copyright-year | Henrik Nord | |
2016-02-29 | Enable execution of multiple test cases or groups from a test spec term | Peter Andersson | |
2015-06-18 | Change license text to APLv2 | Bruce Yinhe | |
2013-01-25 | [common_test] Update common test modules to handle unicode | Siri Hansen | |
* Use UTF-8 encoding for all HTML files, except the HTML version of the test suite generated with erl2html2:convert, which will have the same encoding as the original test suite (.erl) file. * Encode link targets in HTML files with test_server_ctrl:uri_encode/1. * Use unicode modifier 't' with ~s when appropriate. * Use unicode:characters_to_list and unicode:characters_to_binary for conversion between binaries and strings instead of binary_to_list and list_to_binary. | |||
2012-11-23 | Fix silly bug | Peter Andersson | |
2012-11-19 | Fix problem with test case order in group specifications | Peter Andersson | |
2012-11-19 | Finish the test suite and correct remaining bugs | Peter Andersson | |
OTP-10466 | |||
2012-11-19 | Implement new group search functionality | Peter Andersson | |
OTP-10466 |