diff options
author | Rickard Green <[email protected]> | 2013-07-10 17:27:55 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2013-07-11 15:27:00 +0200 |
commit | db110d392706dd8065a84b55c1354cc6c004f45c (patch) | |
tree | f93f1aaeaba85610cedea5f091d08f78dbfbf2e3 /erts/emulator/test/a_SUITE.erl | |
parent | 8cece79b77952c991e62ae595bcf71cde016a052 (diff) | |
download | otp-db110d392706dd8065a84b55c1354cc6c004f45c.tar.gz otp-db110d392706dd8065a84b55c1354cc6c004f45c.tar.bz2 otp-db110d392706dd8065a84b55c1354cc6c004f45c.zip |
Conditionally skip process_SUITE tests that consume large amount of memory
Diffstat (limited to 'erts/emulator/test/a_SUITE.erl')
-rw-r--r-- | erts/emulator/test/a_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/test/a_SUITE.erl b/erts/emulator/test/a_SUITE.erl index b541be3df6..195c9c0a5f 100644 --- a/erts/emulator/test/a_SUITE.erl +++ b/erts/emulator/test/a_SUITE.erl @@ -68,6 +68,9 @@ pollset_size(doc) -> pollset_size(suite) -> []; pollset_size(Config) when is_list(Config) -> + %% Ensure inet_gethost_native port program started, in order to + %% allow other suites to use it... + inet_gethost_native:gethostbyname("localhost"), ?line Parent = self(), ?line Go = make_ref(), ?line spawn(fun () -> |