summaryrefslogtreecommitdiff
path: root/lib/os_mon/src/os_mon.app.src
diff options
context:
space:
mode:
authorKjell Winblad <kjellwinblad@gmail.com>2021-05-07 16:03:01 +0200
committerKjell Winblad <kjellwinblad@gmail.com>2021-07-09 09:06:45 +0200
commitfc2c4fc4739ad07e03df2c9ef6d558161ce100d1 (patch)
tree032ff0a023d4fcbfacb77cc1601a6bb06af9e7b8 /lib/os_mon/src/os_mon.app.src
parent000e32aa45cb8524164e4faf238e2277375c321c (diff)
downloaderlang-fc2c4fc4739ad07e03df2c9ef6d558161ce100d1.tar.gz
Add app-file runtime_dependencies test and incorrect dependencies fixes
This commit adds a test case to check that app files for the Erlang/OTP applications specifies correct versions for the dependencies in the runtime_dependencies field. The test is designed to work on the Erlang/OTP team's test servers as it assumes that all released applications are installed in particular places and that all app versions have been increased in the correct way (which is done by scripts in the Erlang/OTP team's test infrastructure). The test uses xref to try to find undefined function calls in all Erlang/OTP applications. When running xref to test an application, `xref`'s library path is set to point to folders containing beam-files for the applications that are specified as the minimum correct versions by the `runtime_dependencies` field in the application's app file. This commit also bumps the versions of several dependencies that the test found to have incorrect versiosn so they instead get the first version of the dependencies that makes the test pass.
Diffstat (limited to 'lib/os_mon/src/os_mon.app.src')
-rw-r--r--lib/os_mon/src/os_mon.app.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/os_mon/src/os_mon.app.src b/lib/os_mon/src/os_mon.app.src
index 894f63e227..1d462e614e 100644
--- a/lib/os_mon/src/os_mon.app.src
+++ b/lib/os_mon/src/os_mon.app.src
@@ -31,4 +31,4 @@
{start_memsup, true},
{start_os_sup, false}]},
{mod, {os_mon, []}},
- {runtime_dependencies, ["stdlib-2.0","sasl-2.4","kernel-3.0","erts-6.0"]}]}.
+ {runtime_dependencies, ["stdlib-3.4","sasl-2.4","kernel-3.0","erts-6.0"]}]}.