diff options
author | John Högberg <[email protected]> | 2018-07-26 09:56:21 +0200 |
---|---|---|
committer | John Högberg <[email protected]> | 2018-07-26 09:56:21 +0200 |
commit | a0b2cc0a377d780fe938ba9be3e417c7a8e00914 (patch) | |
tree | 0d5714d31e6c67faeaaab6f76351bf3bec4a8591 /lib | |
parent | f678e1b71987075cfd7816da7e7dd828ea630115 (diff) | |
parent | 4664de710ded469916fcc8f85d4e9791adc319e9 (diff) | |
download | otp-a0b2cc0a377d780fe938ba9be3e417c7a8e00914.tar.gz otp-a0b2cc0a377d780fe938ba9be3e417c7a8e00914.tar.bz2 otp-a0b2cc0a377d780fe938ba9be3e417c7a8e00914.zip |
Merge branch 'maint-21' into maint
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kernel/test/file_SUITE.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/kernel/test/file_SUITE.erl b/lib/kernel/test/file_SUITE.erl index 23913ac56a..e784c06865 100644 --- a/lib/kernel/test/file_SUITE.erl +++ b/lib/kernel/test/file_SUITE.erl @@ -1367,6 +1367,10 @@ file_info_basic_file(Config) when is_list(Config) -> io:put_chars(Fd1, "foo bar"), ok = ?FILE_MODULE:close(Fd1), + %% Don't crash the file server when passing incorrect arguments. + {error,badarg} = ?FILE_MODULE:read_file_info(Name, [{time, gurka}]), + {error,badarg} = ?FILE_MODULE:read_file_info([#{} | gaffel]), + %% Test that the file has the expected attributes. %% The times are tricky, so we will save them to a separate test case. {ok,FileInfo} = ?FILE_MODULE:read_file_info(Name), |