diff options
author | Siri Hansen <[email protected]> | 2012-09-10 16:21:38 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-09-11 09:30:19 +0200 |
commit | 6f3205aed3acfb0a8426e87bfe52d6a36bceeb08 (patch) | |
tree | d9aba093424bc0cba5e92be708e7b048de104bff /lib/reltool/test/reltool_server_SUITE_data | |
parent | f60e85b22cb57ceecd0c82426c6c484102cf6bd2 (diff) | |
download | otp-6f3205aed3acfb0a8426e87bfe52d6a36bceeb08.tar.gz otp-6f3205aed3acfb0a8426e87bfe52d6a36bceeb08.tar.bz2 otp-6f3205aed3acfb0a8426e87bfe52d6a36bceeb08.zip |
[reltool] Allow incl_cond=derived on module level
According to documentation it should be allowed to set
incl_cond=include|exclude|derived, but if set to derived on module
level, reltool_server would crash. This has been corrected.
Diffstat (limited to 'lib/reltool/test/reltool_server_SUITE_data')
-rw-r--r-- | lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/ebin/y.app | 2 | ||||
-rw-r--r-- | lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/src/y0.erl | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/ebin/y.app b/lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/ebin/y.app index d9dac371d7..39fdabeea4 100644 --- a/lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/ebin/y.app +++ b/lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/ebin/y.app @@ -2,6 +2,6 @@ {application, y, [{description, "Library application in reltool dependency test"}, {vsn, "1.0"}, - {modules, [y1,y2]}, + {modules, [y0,y1,y2]}, {registered, []}, {applications, [kernel, stdlib]}]}. diff --git a/lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/src/y0.erl b/lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/src/y0.erl new file mode 100644 index 0000000000..dc188ba7b6 --- /dev/null +++ b/lib/reltool/test/reltool_server_SUITE_data/dependencies/y-1.0/src/y0.erl @@ -0,0 +1,5 @@ +-module(y0). +-compile(export_all). + +f() -> + ok. |