diff options
author | Lukas Larsson <[email protected]> | 2016-08-16 10:17:50 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2016-08-16 10:17:55 +0200 |
commit | cad08127834757a48ad85b8f6e177c2d1a7f8589 (patch) | |
tree | 50af2617032b4e52b2c58c46a5c240d7ab1acd8b /lib/kernel/test/os_SUITE.erl | |
parent | 020d38d4c9062f255b52eeb35542152c7cff1598 (diff) | |
download | otp-cad08127834757a48ad85b8f6e177c2d1a7f8589.tar.gz otp-cad08127834757a48ad85b8f6e177c2d1a7f8589.tar.bz2 otp-cad08127834757a48ad85b8f6e177c2d1a7f8589.zip |
erts: Make sure to flush potential exit message
Diffstat (limited to 'lib/kernel/test/os_SUITE.erl')
-rw-r--r-- | lib/kernel/test/os_SUITE.erl | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/lib/kernel/test/os_SUITE.erl b/lib/kernel/test/os_SUITE.erl index 8f3e511941..19ab3713a1 100644 --- a/lib/kernel/test/os_SUITE.erl +++ b/lib/kernel/test/os_SUITE.erl @@ -25,7 +25,7 @@ -export([space_in_cwd/1, quoting/1, cmd_unicode/1, space_in_name/1, bad_command/1, find_executable/1, unix_comment_in_command/1, deep_list_command/1, large_output_command/1, background_command/0, background_command/1, - perf_counter_api/1]). + message_leak/1, perf_counter_api/1]). -include_lib("common_test/include/ct.hrl"). @@ -36,7 +36,8 @@ suite() -> all() -> [space_in_cwd, quoting, cmd_unicode, space_in_name, bad_command, find_executable, unix_comment_in_command, deep_list_command, - large_output_command, background_command, perf_counter_api]. + large_output_command, background_command, message_leak, + perf_counter_api]. groups() -> []. @@ -284,6 +285,23 @@ background_command(_Config) -> %% longer then the 5 second timeout os:cmd("sleep 10&"). +%% Test that message does not leak to the calling process +message_leak(_Config) -> + process_flag(trap_exit, true), + + os:cmd("echo hello"), + [] = receive_all(), + + case os:type() of + {unix, _} -> + os:cmd("while true; do echo hello; done&"), + [] = receive_all(); + _ -> + ok % Cannot background on non-unix + end, + + process_flag(trap_exit, false). + %% Test that the os:perf_counter api works as expected perf_counter_api(_Config) -> |