diff options
author | Siri Hansen <[email protected]> | 2014-02-21 15:27:56 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2014-02-21 16:16:56 +0100 |
commit | dba1f39502d0e711e6670f5f6e6073045f74a1ee (patch) | |
tree | 3092d760f6ae2587a0007ec3401daa6c30c1e275 /lib/kernel | |
parent | db911c1f15372d2dadf06e8502506b0936a4fbb3 (diff) | |
download | otp-dba1f39502d0e711e6670f5f6e6073045f74a1ee.tar.gz otp-dba1f39502d0e711e6670f5f6e6073045f74a1ee.tar.bz2 otp-dba1f39502d0e711e6670f5f6e6073045f74a1ee.zip |
Unload 'deadlock' application in application_SUITE:shutdown_deadlock
This is just to clean up properly after the test case. If not,
code_SUITE:bit_boot_embedded might fail since it tries to include the
'deadlock' application in the boot file and fails when running
systools:make_script.
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/test/application_SUITE.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/kernel/test/application_SUITE.erl b/lib/kernel/test/application_SUITE.erl index ccb3760309..c6cbd1a0ef 100644 --- a/lib/kernel/test/application_SUITE.erl +++ b/lib/kernel/test/application_SUITE.erl @@ -2121,6 +2121,7 @@ shutdown_deadlock(Config) when is_list(Config) -> Server ! continue end, [_|_] = application:which_applications(), + application:unload(deadlock), % clean up! ok. |