Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-06-07 | ct_util: Fix unmatched_return warnings | Zandra | |
2016-06-07 | erl2html2: Fix unmatched_return warnings | Zandra | |
2016-06-07 | cth_conn_log: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_webtool: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_telnet: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_ssh: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_snmp: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_slave: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_rpc: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_repeat: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_release_test: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_property_test: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_master: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_hooks_lock: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_hooks: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_groups: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_ftp: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_framework: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_config: Fix unmatched_return warnings | Zandra | |
2016-06-07 | ct_run: Fix unmatched_return warnings | Zandra | |
2016-05-31 | Remove noop log call in common_test | Zandra | |
2016-05-31 | ct: Fix unmatched_return warnings | Zandra | |
2016-05-13 | common_test: Fix doc tags of ct_netconfc | Björn-Egil Dahlberg | |
2016-05-10 | ct_logs: Eliminate dialyzer warnings | Björn Gustavsson | |
common_test uses its own IO server that is group leader for the test case processes. By default, the IO server escapes characters with significance to HTML (e.g. '<'). In order to output HTML tags directly, the IO server must be told not to escape the output. The way to tell the IO server is to wrap the format string like this: ["$ct_html",Format] That works with common_test's own IO server, but in general not with other IO servers. Dialyzer will rightly complain that the call breaks the contract for io:format/3. To avoid the Dialyzer warning, we must obscure the wrapping of the format string. While we are at it, also refactor print_style/4 to make the code somewhat cleaner and shorter. | |||
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-04 | Merge branch 'siri/cuddle-master' | Siri Hansen | |
* siri/cuddle-master: Extend timer in test Update crashdump_viewer_SUITE with new release numbers Set longer timetrap when creating dsa files Check that ssh application exists before starting netconf tests Improve error control when starting ssh in netconf test | |||
2016-05-03 | Prepare release | Erlang/OTP | |
2016-05-03 | Merge branch 'peppe/ct_misc_18_patches' into maint-18 | Erlang/OTP | |
* peppe/ct_misc_18_patches: Add flag/option for disabling the character escaping functionality Fix bug using the wrong lists search function Fix bug with clashing timestamp values Fix problem with stylesheet tags getting escaped Skip pre/post test IO suite if cover or debug is running Tweak pre_post_io test case to run without failing Fix various log related problems | |||
2016-05-03 | Merge branch 'peppe/ct_remove_nodelay/OTP-13462' into maint-18 | Erlang/OTP | |
* peppe/ct_remove_nodelay/OTP-13462: Update the reference manual Make the nodelay setting configurable and false per default | |||
2016-05-02 | Add flag/option for disabling the character escaping functionality | Peter Andersson | |
OTP-13537 | |||
2016-05-02 | Update the reference manual | Peter Andersson | |
OTP-13462 | |||
2016-05-02 | Fix bug using the wrong lists search function | Peter Andersson | |
2016-05-02 | Fix bug with clashing timestamp values | Peter Andersson | |
2016-05-02 | Fix problem with stylesheet tags getting escaped | Peter Andersson | |
OTP-13536 | |||
2016-05-02 | Skip pre/post test IO suite if cover or debug is running | Peter Andersson | |
OTP-13535 The return value of ct:get_timetrap_info/0 has been modified. | |||
2016-05-02 | Tweak pre_post_io test case to run without failing | Peter Andersson | |
2016-05-02 | Fix various log related problems | Peter Andersson | |
2016-04-28 | Make the nodelay setting configurable and false per default | Peter Andersson | |
2016-04-27 | add testcase for the surefire hook bug | Zandra | |
2016-04-27 | fix cht_surefire bug when pre_init_per_suite fails | Zandra | |
When pre_init_per_suite fails before reaching the cth_surefire pre_init_per_suite unexpected XML was produced. This commit fixes that. | |||
2016-04-26 | Merge branch 'lukas/ts/exit_status/OTP-13515' | Lukas Larsson | |
* lukas/ts/exit_status/OTP-13515: ts: Add logging of exit_status from test node | |||
2016-04-13 | Extend timer in test | Siri Hansen | |
ct_netconfc_SUITE -> netconfc1_SUITE:close_while_waiting_for_chunked_data fails every now and then with {error,timeout} instead of {error,closed}. To overcome this, the timeout value in the failing call is now extended. | |||
2016-04-13 | Merge branch 'siri/otp-19-vsns' | Siri Hansen | |
* siri/otp-19-vsns: Update version of common_test for OTP-19 Update versions | |||
2016-04-13 | Merge branch 'siri/ct/mods-in-app-file/OTP-13475' | Siri Hansen | |
* siri/ct/mods-in-app-file/OTP-13475: Don't add explicit path to ct_release_test Add missing modules to common_test.app.src | |||
2016-04-13 | Merge branch 'henrik/update-copyrightyear' | Henrik Nord | |
* henrik/update-copyrightyear: update copyright-year | |||
2016-04-08 | Don't add explicit path to ct_release_test | Siri Hansen | |
This module is now in common_test.app, so it will be included in the release which is upgraded from (and to). | |||
2016-04-08 | Update version of common_test for OTP-19 | Siri Hansen | |
This is done early so test of ct_release_test shall work. | |||
2016-04-07 | test_server,erl_interface: Add test_host_not_reachable config | Sverker Eriksson | |
2016-04-06 | Add missing modules to common_test.app.src | Siri Hansen | |
2016-04-05 | ts: Add logging of exit_status from test node | Lukas Larsson | |