aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/doc/src/run_test_chapter.xml
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2011-02-09 16:39:29 +0100
committerLukas Larsson <[email protected]>2011-02-17 17:00:31 +0100
commit044f768b6545234461f173e8a959379630723e8f (patch)
tree25c4e8624333b576173dff4722c27ba1c25a4d61 /lib/common_test/doc/src/run_test_chapter.xml
parentade343808a1a634bd39ab1c94ecadfd070a189de (diff)
downloadotp-044f768b6545234461f173e8a959379630723e8f.tar.gz
otp-044f768b6545234461f173e8a959379630723e8f.tar.bz2
otp-044f768b6545234461f173e8a959379630723e8f.zip
Rename Suite Callback to Common Test hook in documentation
Diffstat (limited to 'lib/common_test/doc/src/run_test_chapter.xml')
-rw-r--r--lib/common_test/doc/src/run_test_chapter.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/common_test/doc/src/run_test_chapter.xml b/lib/common_test/doc/src/run_test_chapter.xml
index 81e752680b..7b485bdc35 100644
--- a/lib/common_test/doc/src/run_test_chapter.xml
+++ b/lib/common_test/doc/src/run_test_chapter.xml
@@ -148,8 +148,8 @@
<seealso marker="event_handler_chapter#event_handling">event handlers</seealso>.</item>
<item><c><![CDATA[-event_handler_init <event_handlers>]]></c>, to install
<seealso marker="event_handler_chapter#event_handling">event handlers</seealso> including start arguments.</item>
- <item><c><![CDATA[-suite_callbacks <suite_callbacks>]]></c>, to install
- <seealso marker="suite_callbacks_chapter#installing">Suite Callbacks</seealso> including start arguments.</item>
+ <item><c><![CDATA[-ct_hooks <ct_hooks>]]></c>, to install
+ <seealso marker="ct_hooks_chapter#installing">Common Test Hooks</seealso> including start arguments.</item>
<item><c><![CDATA[-include]]></c>, specifies include directories (see above).</item>
<item><c><![CDATA[-no_auto_compile]]></c>, disables the automatic test suite compilation feature (see above).</item>
<item><c><![CDATA[-multiply_timetraps <n>]]></c>, extends <seealso marker="write_test_chapter#timetraps">timetrap
@@ -444,8 +444,8 @@
{event_handler, EventHandlers, InitArgs}.
{event_handler, NodeRefs, EventHandlers, InitArgs}.
- {suite_callbacks, SCBModules}.
- {suite_callbacks, NodeRefs, SCBModules}.
+ {ct_hooks, CTHModules}.
+ {ct_hooks, NodeRefs, CTHModules}.
</pre>
<p>Test terms:</p>
<pre>
@@ -484,9 +484,9 @@
LogDir = string()
EventHandlers = atom() | [atom()]
InitArgs = [term()]
- SCBModules = [SCBModule | {SCBModule, SCBInitArgs}]
- SCBModule = atom()
- SCBInitArgs = term()
+ CTHModules = [CTHModule | {CTHModule, CTHInitArgs}]
+ CTHModule = atom()
+ CTHInitArgs = term()
DirRef = DirAlias | Dir
Suites = atom() | [atom()] | all
Suite = atom()