diff options
author | Dan Gudmundsson <[email protected]> | 2017-09-27 16:00:42 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2017-09-28 11:38:28 +0200 |
commit | 52ca88f1c23657713946e22e0910f2cb7f2f601e (patch) | |
tree | 3bafc59343b0a2b615040dc0b9e1728f1d8b5634 /lib/reltool/test | |
parent | ee0da31d00a7bd3375b66cf905cb2811d868f21b (diff) | |
download | otp-52ca88f1c23657713946e22e0910f2cb7f2f601e.tar.gz otp-52ca88f1c23657713946e22e0910f2cb7f2f601e.tar.bz2 otp-52ca88f1c23657713946e22e0910f2cb7f2f601e.zip |
reltool: Add no_dot_erlang bootfiles
Needed by escript and tools
Diffstat (limited to 'lib/reltool/test')
-rw-r--r-- | lib/reltool/test/reltool_server_SUITE.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/reltool/test/reltool_server_SUITE.erl b/lib/reltool/test/reltool_server_SUITE.erl index db13c56238..3622f6650c 100644 --- a/lib/reltool/test/reltool_server_SUITE.erl +++ b/lib/reltool/test/reltool_server_SUITE.erl @@ -247,6 +247,7 @@ get_config(_Config) -> {app,stdlib,[{incl_cond,include},{vsn,undefined}, {lib_dir,StdLibDir}]}, {boot_rel,"start_clean"}, + {rel,"no_dot_erlang","1.0",[]}, {rel,"start_clean","1.0",[]}, {rel,"start_sasl","1.0",[sasl]}, {emu_name,"beam"}, @@ -277,6 +278,7 @@ get_config(_Config) -> {app,stdlib,[{incl_cond,include},{vsn,StdVsn}, {lib_dir,StdLibDir},{mod,_,[]}|_]}, {boot_rel,"start_clean"}, + {rel,"no_dot_erlang","1.0",[]}, {rel,"start_clean","1.0",[]}, {rel,"start_sasl","1.0",[sasl]}, {emu_name,"beam"}, @@ -2104,6 +2106,7 @@ save_config(Config) -> {app,stdlib,[{incl_cond,include},{vsn,undefined}, {lib_dir,undefined}]}, {boot_rel,"start_clean"}, + {rel,"no_dot_erlang","1.0",[]}, {rel,"start_clean","1.0",[]}, {rel,"start_sasl","1.0",[sasl]}, {emu_name,"beam"}, @@ -2144,6 +2147,7 @@ save_config(Config) -> {app,stdlib,[{incl_cond,include},{vsn,StdVsn}, {lib_dir,StdLibDir},{mod,_,[]}|_]}, {boot_rel,"start_clean"}, + {rel,"no_dot_erlang","1.0",[]}, {rel,"start_clean","1.0",[]}, {rel,"start_sasl","1.0",[sasl]}, {emu_name,"beam"}, |