From dac94945228322ffb9f8dd8495789c0cd64442a3 Mon Sep 17 00:00:00 2001 From: Siri Hansen Date: Mon, 12 Mar 2012 17:34:15 +0100 Subject: [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. --- .../test/reltool_server_SUITE_data/dupl_mod/a-1.0/ebin/a.app | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/reltool/test/reltool_server_SUITE_data/dupl_mod/a-1.0/ebin/a.app (limited to 'lib/reltool/test/reltool_server_SUITE_data') 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]}]}. -- cgit v1.2.3