Fix test-errno issues
commitb36a65e5cadc201eb840e2b7716ae878e5c3533f
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Mon, 13 Mar 2017 13:20:05 +0000 (13 10:20 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 15 Mar 2017 20:05:34 +0000 (15 17:05 -0300)
tree9e141f04c85ecf2c5a1b227d13db7f40c2baa355
parentffe308e4fcf2f276c87fd405596569ba52ad0a29
Fix test-errno issues

This patch fixes multiple issues of test-errno.c (9a56f8718341):

  - Rename Linux test-errno.c to test-errno-linux.c to avoid build
    the same source for both tests.

  - Add a mlock check for 32 bits build running on 64 bits kernels.
    Althuough man pages states that mlock fails with EINVAL if final
    address overflows, kernels does not return it for aforementioned
    condition (it returns ENOMEM instead).  Although it seems to be
    a kernel issue for compat syscall handling, I think it is worth
    to still check syscall return and document the behavior.

  - Initialize option lenght for setsockopt check.

  - Change open test from EINVAL to EISDIR.

Checked on x86_64-linux-gnu and i686-linux-gnu (running on 64 bits
kernel).

* posix/test-errno.c (do_test): Initialize setsockopt optlen.
* sysdeps/unix/sysv/linux/test-errno.c: Move to ...
* sysdeps/unix/sysv/linux/test-errno-linux.c: ... here.
(test_wrp_rv): Fix format.
(test_wrp_rv2): New macro.
(do_test): Handle mlock return on 64 bits kernels with 32 bits
binaries.
ChangeLog
posix/test-errno.c
sysdeps/unix/sysv/linux/Makefile
sysdeps/unix/sysv/linux/test-errno-linux.c [moved from sysdeps/unix/sysv/linux/test-errno.c with 74% similarity]