diff options
author | John Högberg <[email protected]> | 2019-03-25 13:03:49 +0100 |
---|---|---|
committer | John Högberg <[email protected]> | 2019-03-29 12:51:54 +0100 |
commit | f26340035f0bded68c9eefbd3a534d8a5f428e36 (patch) | |
tree | f063ee163a1211d099b964a2cf3953a55a2d0648 /erts/emulator/beam/erl_posix_str.c | |
parent | 83fb1f13596977beab8b426a23813d73d71f9c17 (diff) | |
download | otp-f26340035f0bded68c9eefbd3a534d8a5f428e36.tar.gz otp-f26340035f0bded68c9eefbd3a534d8a5f428e36.tar.bz2 otp-f26340035f0bded68c9eefbd3a534d8a5f428e36.zip |
file_SUITE: Ignore EILSEQ on Darwin in +fnu/latin1 test
There's no way to create the file in question, so we may as well
skip the test.
Diffstat (limited to 'erts/emulator/beam/erl_posix_str.c')
-rw-r--r-- | erts/emulator/beam/erl_posix_str.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_posix_str.c b/erts/emulator/beam/erl_posix_str.c index 7b3e640d3f..5b515d6e78 100644 --- a/erts/emulator/beam/erl_posix_str.c +++ b/erts/emulator/beam/erl_posix_str.c @@ -171,6 +171,9 @@ erl_errno_id(error) #if defined(EIDRM) && (!defined(EINPROGRESS) || (EIDRM != EINPROGRESS)) case EIDRM: return "eidrm"; #endif +#ifdef EILSEQ + case EILSEQ: return "eilseq"; +#endif #ifdef EINIT case EINIT: return "einit"; #endif |