diff options
author | Dan Gudmundsson <[email protected]> | 2014-09-24 07:53:24 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2014-09-24 07:53:24 +0200 |
commit | f614963ebc1a37c91515c7a85e3e3bdc06568557 (patch) | |
tree | 57272411ec6ddd674d25697ecceb26e5ec7b8573 | |
parent | bca562455e1e8cb8be5a5a5de53c926eba51f977 (diff) | |
download | otp-f614963ebc1a37c91515c7a85e3e3bdc06568557.tar.gz otp-f614963ebc1a37c91515c7a85e3e3bdc06568557.tar.bz2 otp-f614963ebc1a37c91515c7a85e3e3bdc06568557.zip |
stdlib: Fix timing issue in testcase
Another error message is generated when the process exits, ignore it.
-rw-r--r-- | lib/stdlib/test/gen_fsm_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/gen_fsm_SUITE.erl b/lib/stdlib/test/gen_fsm_SUITE.erl index 336065b258..39f0442824 100644 --- a/lib/stdlib/test/gen_fsm_SUITE.erl +++ b/lib/stdlib/test/gen_fsm_SUITE.erl @@ -434,7 +434,7 @@ terminate_crash_format(Config) when is_list(Config) -> io:format("Timeout: expected error logger msg", []), ?t:fail() end, - [] = ?t:messages_get(), + _ = ?t:messages_get(), process_flag(trap_exit, OldFl), ok. |