diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2014-03-04 02:23:47 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2014-03-04 02:36:13 +0100 |
commit | adade27df2a89887ff44ef54e59996effafb6419 (patch) | |
tree | 3666e765fb33ab60bacf54b8042d8d2d3afb0135 /lib/compiler/test | |
parent | a74e66a68f3b4ed590f928b4fd4f0808c6287a32 (diff) | |
download | erlang-adade27df2a89887ff44ef54e59996effafb6419.tar.gz |
Handle nil as a wait_timeout argument in beam_utils:live_opt/4
Reported-by: Ulf Norell
Diffstat (limited to 'lib/compiler/test')
-rw-r--r-- | lib/compiler/test/receive_SUITE.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/test/receive_SUITE.erl b/lib/compiler/test/receive_SUITE.erl index ec49267ded..00a6e900d4 100644 --- a/lib/compiler/test/receive_SUITE.erl +++ b/lib/compiler/test/receive_SUITE.erl @@ -257,6 +257,7 @@ wait(Config) when is_list(Config) -> self() ! <<42>>, <<42>> = wait_1(r, 1, 2), {1,2,3} = wait_1(1, 2, 3), + {'EXIT',{timeout_value,_}} = (catch receive after [] -> timeout end), ok. wait_1(r, _, _) -> |