diff options
author | Björn Gustavsson <[email protected]> | 2017-06-12 15:49:52 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-06-12 16:31:07 +0200 |
commit | 6b25d2451a870a13965e0b21dd99efe115db4c8a (patch) | |
tree | ac981c578dee4c77e5f6ae079930c09fa1b2b150 | |
parent | e7377ce9f0a6a37973baca55d3e4ee27380b9313 (diff) | |
download | otp-6b25d2451a870a13965e0b21dd99efe115db4c8a.tar.gz otp-6b25d2451a870a13965e0b21dd99efe115db4c8a.tar.bz2 otp-6b25d2451a870a13965e0b21dd99efe115db4c8a.zip |
busy_port_SUITE: Eliminate 'export_all'
-rw-r--r-- | erts/emulator/test/busy_port_SUITE.erl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/erts/emulator/test/busy_port_SUITE.erl b/erts/emulator/test/busy_port_SUITE.erl index 7094cee992..ce643872e5 100644 --- a/erts/emulator/test/busy_port_SUITE.erl +++ b/erts/emulator/test/busy_port_SUITE.erl @@ -24,14 +24,15 @@ io_to_busy/1, message_order/1, send_3/1, system_monitor/1, no_trap_exit/1, no_trap_exit_unlinked/1, trap_exit/1, multiple_writers/1, - hard_busy_driver/1, soft_busy_driver/1]). - --compile(export_all). + hard_busy_driver/1, soft_busy_driver/1, + scheduling_delay_busy/1, + scheduling_delay_busy_nosuspend/1, + scheduling_busy_link/1]). -include_lib("common_test/include/ct.hrl"). %% Internal exports. --export([init/2]). +-export([init/2,process_init/2,ack/2,call/2,cast/2]). suite() -> [{ct_hooks,[ts_install_cth]}, |