aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Högberg <[email protected]>2017-11-22 16:27:53 +0100
committerJohn Högberg <[email protected]>2017-11-30 15:44:39 +0100
commit0278c9873ffc277c9a940d6f5cae1508a6685c7b (patch)
tree54b05c11b6c1f7a9fa576f82a3d7feb7043714bf
parent8e634f0063acb8009c2afb303111a2fd35aad78b (diff)
downloadotp-0278c9873ffc277c9a940d6f5cae1508a6685c7b.tar.gz
otp-0278c9873ffc277c9a940d6f5cae1508a6685c7b.tar.bz2
otp-0278c9873ffc277c9a940d6f5cae1508a6685c7b.zip
Don't assume efile driver is present
-rw-r--r--erts/emulator/test/ddll_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/ddll_SUITE.erl b/erts/emulator/test/ddll_SUITE.erl
index 031b05790d..4998fc08be 100644
--- a/erts/emulator/test/ddll_SUITE.erl
+++ b/erts/emulator/test/ddll_SUITE.erl
@@ -775,7 +775,7 @@ errors(Config) when is_list(Config) ->
{error, bad_driver_name} = erl_ddll:load_driver(Path, wrongname_drv),
%% We assume that there is a statically linked driver named "ddll":
- {error, linked_in_driver} = erl_ddll:unload_driver(efile),
+ {error, linked_in_driver} = erl_ddll:unload_driver(ram_file_drv),
{error, not_loaded} = erl_ddll:unload_driver("__pucko_driver__"),
case os:type() of