diff options
author | Peter Andersson <[email protected]> | 2012-03-21 18:09:30 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2012-03-21 18:09:30 +0100 |
commit | c75d6ef4e32affebd6e5a3a03bbbb18532940030 (patch) | |
tree | 0070b2dbd47712411813fb7aa3782d774201a5e7 /lib/common_test | |
parent | 22d5fe18a285784fe724d5f1ce62578bd7ff4f1a (diff) | |
download | otp-c75d6ef4e32affebd6e5a3a03bbbb18532940030.tar.gz otp-c75d6ef4e32affebd6e5a3a03bbbb18532940030.tar.bz2 otp-c75d6ef4e32affebd6e5a3a03bbbb18532940030.zip |
Document the create_priv_dir option for ct:run_test/1
Diffstat (limited to 'lib/common_test')
-rw-r--r-- | lib/common_test/src/ct.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/common_test/src/ct.erl b/lib/common_test/src/ct.erl index 63a8adbc63..68ddce8068 100644 --- a/lib/common_test/src/ct.erl +++ b/lib/common_test/src/ct.erl @@ -146,7 +146,8 @@ run(TestDirs) -> %%% {silent_connections,Conns} | {stylesheet,CSSFile} | %%% {cover,CoverSpecFile} | {step,StepOpts} | %%% {event_handler,EventHandlers} | {include,InclDirs} | -%%% {auto_compile,Bool} | {multiply_timetraps,M} | {scale_timetraps,Bool} | +%%% {auto_compile,Bool} | {create_priv_dir,CreatePrivDir} | +%%% {multiply_timetraps,M} | {scale_timetraps,Bool} | %%% {repeat,N} | {duration,DurTime} | {until,StopTime} | %%% {force_stop,Bool} | {decrypt,DecryptKeyOrFile} | %%% {refresh_logs,LogDir} | {logopts,LogOpts} | {basic_html,Bool} | @@ -171,6 +172,7 @@ run(TestDirs) -> %%% EH = atom() | {atom(),InitArgs} | {[atom()],InitArgs} %%% InitArgs = [term()] %%% InclDirs = [string()] | string() +%%% CreatePrivDir = auto_per_run | auto_per_tc | manual_per_tc %%% M = integer() %%% N = integer() %%% DurTime = string(HHMMSS) |