aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/ets_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-11-17 14:20:05 +0100
committerBjörn Gustavsson <[email protected]>2017-11-17 15:33:05 +0100
commit1107083935fbdb8f8a7ece9549d8203652c4fec6 (patch)
treebfcca050d92d0f095c9b590d154e1b23700e2494 /lib/stdlib/test/ets_SUITE.erl
parentd99803e7625e474dee40f0dfebf2b8092add0336 (diff)
downloadotp-1107083935fbdb8f8a7ece9549d8203652c4fec6.tar.gz
otp-1107083935fbdb8f8a7ece9549d8203652c4fec6.tar.bz2
otp-1107083935fbdb8f8a7ece9549d8203652c4fec6.zip
Avoid using the efile driver in test suites
The efile driver will soon be reimplemented as a BIF. Instead of opening a port based on efile, use hd(erlang:ports()). It is a reasonable safe assumption that the runtime will continue to use use at least some ports.
Diffstat (limited to 'lib/stdlib/test/ets_SUITE.erl')
-rw-r--r--lib/stdlib/test/ets_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/ets_SUITE.erl b/lib/stdlib/test/ets_SUITE.erl
index f329a07b7a..07c8b60cbd 100644
--- a/lib/stdlib/test/ets_SUITE.erl
+++ b/lib/stdlib/test/ets_SUITE.erl
@@ -6369,7 +6369,7 @@ very_big_num(0, Result) ->
Result.
make_port() ->
- open_port({spawn, "efile"}, [eof]).
+ hd(erlang:ports()).
make_pid() ->
spawn_link(fun sleeper/0).