aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2018-08-28 08:32:08 +0200
committerGitHub <[email protected]>2018-08-28 08:32:08 +0200
commit8d22b08cddb654d49cf86a43e2d31e5736e347fe (patch)
tree4b48af54505955d8386911891be4581bd72852d8 /lib/stdlib/test
parentecea0a8b85e650ff717623dc6be2c18a8dbba971 (diff)
parent4734964a6290c32fc20095d46140053e193379f5 (diff)
downloadotp-8d22b08cddb654d49cf86a43e2d31e5736e347fe.tar.gz
otp-8d22b08cddb654d49cf86a43e2d31e5736e347fe.tar.bz2
otp-8d22b08cddb654d49cf86a43e2d31e5736e347fe.zip
Merge pull request #1940 from uabboli/hb/stdlib/fix_dets_file_name/OTP-15253/ERL-555
stdlib: Let dets:open_file() crash when given raw file name
Diffstat (limited to 'lib/stdlib/test')
-rw-r--r--lib/stdlib/test/dets_SUITE.erl15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/stdlib/test/dets_SUITE.erl b/lib/stdlib/test/dets_SUITE.erl
index fe324391af..65977a764a 100644
--- a/lib/stdlib/test/dets_SUITE.erl
+++ b/lib/stdlib/test/dets_SUITE.erl
@@ -3417,6 +3417,7 @@ otp_11709(Config) when is_list(Config) ->
ok.
%% OTP-13229. open_file() exits with badarg when given binary file name.
+%% Also OTP-15253.
otp_13229(_Config) ->
F = <<"binfile.tab">>,
try dets:open_file(name, [{file, F}]) of
@@ -3425,6 +3426,20 @@ otp_13229(_Config) ->
catch
error:badarg ->
ok
+ end,
+ try dets:open_file(F, []) of % OTP-15253
+ R2 ->
+ exit({open_succeeded, R2})
+ catch
+ error:badarg ->
+ ok
+ end,
+ try dets:open_file(F) of
+ R3 ->
+ exit({open_succeeded, R3})
+ catch
+ error:badarg ->
+ ok
end.
%% OTP-13260. Race when opening a table.