diff options
author | Siri Hansen <[email protected]> | 2011-03-25 12:32:02 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2011-03-30 12:37:14 +0200 |
commit | ed2b38d6fb29f4df7eda0fe1ec3d8fd9aee49fb6 (patch) | |
tree | c4a05f0915b0ac547f37baaa52466fa6de3cf936 /lib/sasl/src/systools_relup.erl | |
parent | ef204e43651715e55ae902176b29026914900cc2 (diff) | |
download | otp-ed2b38d6fb29f4df7eda0fe1ec3d8fd9aee49fb6.tar.gz otp-ed2b38d6fb29f4df7eda0fe1ec3d8fd9aee49fb6.tar.bz2 otp-ed2b38d6fb29f4df7eda0fe1ec3d8fd9aee49fb6.zip |
Change default behaviour to not check src code when creating release
Add new option <c>src_tests</c> to systools:make_script and
systools:make_tar. The old option <c>no_module_tests</c> is now
ignored as this is the default behaviour.
Diffstat (limited to 'lib/sasl/src/systools_relup.erl')
-rw-r--r-- | lib/sasl/src/systools_relup.erl | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/sasl/src/systools_relup.erl b/lib/sasl/src/systools_relup.erl index 6b0f77703e..ec5486226c 100644 --- a/lib/sasl/src/systools_relup.erl +++ b/lib/sasl/src/systools_relup.erl @@ -179,8 +179,7 @@ check_opts([]) -> []. do_mk_relup(TopRelFile, BaseUpRelDcs, BaseDnRelDcs, Path, Opts) -> - ModTest = false, - case systools_make:get_release(to_list(TopRelFile), Path, ModTest) of + case systools_make:get_release(to_list(TopRelFile), Path) of %% %% TopRel = #release %% NameVsnApps = [{{Name, Vsn}, #application}] @@ -246,9 +245,8 @@ foreach_baserel_up(TopRel, TopApps, [BaseRelDc|BaseRelDcs], Path, Opts, {RUs4, Ws4} = check_for_emulator_restart(TopRel, BaseRel, RUs3, Ws3, Opts), - ModTest = false, BaseApps = - case systools_make:get_release(BaseRelFile, Path, ModTest) of + case systools_make:get_release(BaseRelFile, Path) of {ok, _, NameVsnApps, _Warns} -> lists:map(fun({_,App}) -> App end, NameVsnApps); Other1 -> @@ -283,9 +281,8 @@ foreach_baserel_dn(TopRel, TopApps, [BaseRelDc|BaseRelDcs], Path, Opts, %% {RUs1, Ws1} = collect_appup_scripts(dn, TopApps, BaseRel, Ws, []), - ModTest = false, {BaseApps, Ws2} = - case systools_make:get_release(BaseRelFile, Path, ModTest) of + case systools_make:get_release(BaseRelFile, Path) of %% %% NameVsnApps = [{{Name, Vsn}, #application}] {ok, _, NameVsnApps, Warns} -> |