diff options
author | Siri Hansen <[email protected]> | 2012-03-12 17:34:15 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-03-19 09:51:32 +0100 |
commit | dac94945228322ffb9f8dd8495789c0cd64442a3 (patch) | |
tree | f029e91a1a637928e59229cb0d6bb3d15855a747 /lib/reltool/test/reltool_server_SUITE_data | |
parent | 50bc03bf5cc4b55644d164819d8c58bef966e278 (diff) | |
download | otp-dac94945228322ffb9f8dd8495789c0cd64442a3.tar.gz otp-dac94945228322ffb9f8dd8495789c0cd64442a3.tar.bz2 otp-dac94945228322ffb9f8dd8495789c0cd64442a3.zip |
[reltool] Just warn if same module occurs twice in .app file
OTP-9792
Earlier this would cause an error with reason
"Module xxx potentially included by two different applications: yyy and yyy."
This is now changed so it will only be a warning saying that the
module is duplicated in the .app file.
Diffstat (limited to 'lib/reltool/test/reltool_server_SUITE_data')
-rw-r--r-- | lib/reltool/test/reltool_server_SUITE_data/dupl_mod/a-1.0/ebin/a.app | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/reltool/test/reltool_server_SUITE_data/dupl_mod/a-1.0/ebin/a.app b/lib/reltool/test/reltool_server_SUITE_data/dupl_mod/a-1.0/ebin/a.app new file mode 100644 index 0000000000..fada34847a --- /dev/null +++ b/lib/reltool/test/reltool_server_SUITE_data/dupl_mod/a-1.0/ebin/a.app @@ -0,0 +1,7 @@ +% -*-erlang-*- +{application, a, + [{description, "Application with duplicated module name in .app file"}, + {vsn, "1.0"}, + {modules, [a,a]}, + {registered, []}, + {applications, [kernel, stdlib]}]}. |