aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_run.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-09-10 14:10:39 +0200
committerLukas Larsson <[email protected]>2010-09-10 14:10:39 +0200
commit48c754b93da2eff262b2297f2e51b102adbabfa0 (patch)
treefb044b3ce8c157e3015eb4ae14be94500fb2bad4 /lib/common_test/src/ct_run.erl
parent96e0071c520f230025126efcf69fb42c7bf7f685 (diff)
downloadotp-48c754b93da2eff262b2297f2e51b102adbabfa0.tar.gz
otp-48c754b93da2eff262b2297f2e51b102adbabfa0.tar.bz2
otp-48c754b93da2eff262b2297f2e51b102adbabfa0.zip
OTP-8818: Fixed inconsistency in ct:start_interactive call
Diffstat (limited to 'lib/common_test/src/ct_run.erl')
-rw-r--r--lib/common_test/src/ct_run.erl5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_run.erl b/lib/common_test/src/ct_run.erl
index c5bfd01642..c14f0c5cee 100644
--- a/lib/common_test/src/ct_run.erl
+++ b/lib/common_test/src/ct_run.erl
@@ -550,6 +550,9 @@ install(Opts) ->
install(Opts, ".").
install(Opts, LogDir) ->
+
+ ConfOpts = ct_config:add_default_callback(Opts),
+
case application:get_env(common_test, decrypt) of
{ok,_} ->
ok;
@@ -566,7 +569,7 @@ install(Opts, LogDir) ->
VarFile = variables_file_name(LogDir),
case file:open(VarFile, [write]) of
{ok,Fd} ->
- [io:format(Fd, "~p.\n", [Opt]) || Opt <- Opts],
+ [io:format(Fd, "~p.\n", [Opt]) || Opt <- ConfOpts ],
file:close(Fd),
ok;
{error,Reason} ->