aboutsummaryrefslogtreecommitdiffstats
path: root/lib/test_server/src/ts_install_cth.erl
AgeCommit message (Collapse)Author
2016-02-17Remove test_server as a standalone applicationBjörn Gustavsson
The test_server application has previously been deprecated. In OTP 19, we will move relevant parts of test_server into the common_test application. Test suites that include test_server.hrl must be updated to include ct.hrl instead. Test suites that include test_server_line.hrl must removed that inclusion. Test suites that call the test_server module directly will continue to work in OTP 19. The test suites for Erlang/OTP are built and executed in exactly the same way as previously. Here are some more details. The modules test_server*.erl and erl2html2.erl in lib/test_server/src have been moved to common_test/src. The test_server.hrl and test_server_line.hrl include files have been deleted. The macros in test_server.hrl have been copied into lib/common_test/include/ct.hrl. The ts*.erl modules and their associated data files in lib/test_server/src has been been moved to the new directory lib/common_test/test_server. The ts* modules are no longer built to lib/common_test/ebin. They will only built when 'make release_tests' is executed. The test suite for test_server has been moved to lib/common_test/test. The rest of the files have been deleted.
2015-06-18Change license text to APLv2Bruce Yinhe
2015-04-27test_server: Fix install_hookBjörn-Egil Dahlberg
We cannot use erlang:unique_integer([positive]) here since this code in run on older test releases as well.
2015-03-20test_server: Replace usage of erlang:now() with usage of new APIDan Gudmundsson
2013-06-12Update copyright yearsBjörn-Egil Dahlberg
2013-05-31Do not fail if there is no variables fileLukas Larsson
2012-08-31Update copyright yearsBjörn-Egil Dahlberg
2012-05-02Update cross build system for tests to workLukas Larsson
ts has been fixed to again work in a cross build environment. See ts:help() and xcomp/README.md for details about how it works.
2011-08-31Update to reflect new cth callback apiLukas Larsson
2011-05-24Add a proplist() typerzezeski
Recently I was adding specs to an API and found that there is no canonical proplist() type defined.
2011-03-11Update copyright yearsBjörn-Egil Dahlberg
2011-03-02Fix bug where failing to make a testcase caused an errornous failure reasonLukas Larsson
2011-02-21Remove old test_server codeLukas Larsson
2011-02-09Rename Suite Callback to Common Test HookLukas Larsson