diff options
author | Lukas Larsson <[email protected]> | 2011-09-26 12:25:59 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-09-29 17:31:28 +0200 |
commit | c058ca00728fbdbb7cef535a8beb13abbaa58cb7 (patch) | |
tree | bb1b79c274ad49a221ebe7becfb8960dc7cf376f /erts/emulator/test/port_SUITE.erl | |
parent | 9b2b8c8652032c216c4f14d54fa24a2492c8325b (diff) | |
download | otp-c058ca00728fbdbb7cef535a8beb13abbaa58cb7.tar.gz otp-c058ca00728fbdbb7cef535a8beb13abbaa58cb7.tar.bz2 otp-c058ca00728fbdbb7cef535a8beb13abbaa58cb7.zip |
Allow out of memory exception for max_port checks
Diffstat (limited to 'erts/emulator/test/port_SUITE.erl')
-rw-r--r-- | erts/emulator/test/port_SUITE.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/test/port_SUITE.erl b/erts/emulator/test/port_SUITE.erl index eac56a867d..0a1ef5a78f 100644 --- a/erts/emulator/test/port_SUITE.erl +++ b/erts/emulator/test/port_SUITE.erl @@ -724,6 +724,8 @@ open_ports(Name, Settings) -> []; system_limit -> []; + enomem -> + []; Other -> ?line test_server:fail({open_ports, Other}) end; |