ct_slave

ct_slave

Module

ct_slave

Module summary

Common Test framework functions for starting and stopping nodes for Large-Scale Testing.

Description

Common Test framework functions for starting and stopping nodes for Large-Scale Testing.

This module exports functions used by the Common Test Master to start and stop "slave" nodes. It is the default callback module for the {init, node_start} term in the Test Specification.

Exports

start(Node) -> Result

Types:

Node = atom()
Result = {ok, NodeName} | {error, Reason, NodeName}
Reason = already_started | started_not_connected | boot_timeout | init_timeout | startup_timeout | not_alive
NodeName = atom()

Starts an Erlang node with name Node on the local host.

<