diff options
author | Håkan Mattsson <[email protected]> | 2010-03-23 16:50:50 +0100 |
---|---|---|
committer | Håkan Mattsson <[email protected]> | 2010-04-19 13:17:33 +0200 |
commit | 534f334247163035b477293e74b78823f2d9b7f3 (patch) | |
tree | 10fba9717bb98da3212ee630ad4e63dd9fa60b86 /lib/reltool/test | |
parent | 5217fb3d0816aa241d228f7ef14fb54f6a14a8f8 (diff) | |
download | otp-534f334247163035b477293e74b78823f2d9b7f3.tar.gz otp-534f334247163035b477293e74b78823f2d9b7f3.tar.bz2 otp-534f334247163035b477293e74b78823f2d9b7f3.zip |
Automatically include applications that must be started
Applications that are required to be started
before other applications according to their
app-file are now automatically included in
the release. The kernel and stdlib applications
are automatically included.
Diffstat (limited to 'lib/reltool/test')
-rw-r--r-- | lib/reltool/test/reltool_app_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/reltool/test/reltool_app_SUITE.erl b/lib/reltool/test/reltool_app_SUITE.erl index 3944190953..f8433f73d0 100644 --- a/lib/reltool/test/reltool_app_SUITE.erl +++ b/lib/reltool/test/reltool_app_SUITE.erl @@ -70,7 +70,7 @@ all(suite) -> [ fields, modules, - exportall, + export_all, app_depend, undef_funcs ]. @@ -175,11 +175,11 @@ extra_modules(Mods, [Mod|Ebins], Extra) -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -exportall(suite) -> +export_all(suite) -> []; -exportall(doc) -> +export_all(doc) -> []; -exportall(Config) when is_list(Config) -> +export_all(Config) when is_list(Config) -> AppFile = key1search(app_file, Config), Mods = key1search(modules, AppFile), check_export_all(Mods). |