aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_slave.erl
AgeCommit message (Collapse)Author
2012-12-20[common_test] Stop cover on slave node after node is terminatedSiri Hansen
Before terminating slave nodes, common_test calls cover:flush/1 to fetch data from the node without actually stopping cover on this node. If cover is not stopped for the node and a new node with the same name is started, then cover will be started on the new node. To avoid this common_test now calls cover:stop/1 after the slave node is terminated.
2012-11-26Merge branch 'bjorn/ct/env-vars/OTP-10469'Björn Gustavsson
* bjorn/ct/env-vars/OTP-10469: Add support for passing environment variables in master mode Remove redundant sleep in ct_master_SUITE Test that test cases succeed Add ct_test_support:verify_events/4 which takes a node name
2012-10-31Add support for passing environment variables in master modeBjörn Gustavsson
Prototype-by: Magnus Lidén <[email protected]>
2012-10-30[common_test, test_server] Don't flush cover if cover is not runningSiri Hansen
ct_slave, ct_test_support and test_server_test_lib always called cover:flush/1 when stopping slave nodes. If cover was not running, this would cause cover_server to be started and thus test_server:is_cover/0 to return true afterwards. This has been corrected.
2012-10-30[common_test] Start cover on slave nodes if running cover testsSiri Hansen
Nodes started with ct_slave should automatically run cover when tests are executed with cover analysis. Nodes must also be flushed for cover data before stopped.
2010-09-06Fix problem with prepared_tests tuple not being recognizedPeter Andersson
2010-06-09Documentation updateAndrey Pampukha
2010-06-09Move 'node_start' and 'eval' terms into new 'init' termAndrey Pampukha
node_start+eval -> init(node_start, eval) Also include some documentation updates.
2010-06-09Change monitor_master option to false by defaultAndrey Pampukha
2010-06-09Improve eval and node_start and add new options for ct_slaveAndrey Pampukha
2010-06-09Modify cookie handling in ct_slaveAndrey Pampukha
2010-06-09Introduce ct_slave moduleAndrey Pampukha