Fix elf/tst-env-setuid[-static] if test needs to be rerun.
commit3150cc0c9019bf9da841419f86dda8e7f26d676d
authorStefan Liebler <stli@linux.ibm.com>
Wed, 13 Dec 2023 11:44:50 +0000 (13 12:44 +0100)
committerStefan Liebler <stli@linux.ibm.com>
Wed, 20 Dec 2023 07:41:06 +0000 (20 08:41 +0100)
tree3d49bd90f1ee04d140f2824bfd4e509ad5d11435
parent50bef9bd63e7fb94f1d2cc8b7809256ffc73b2ef
Fix elf/tst-env-setuid[-static] if test needs to be rerun.

If /tmp is mounted nosuid and make xcheck is run,
then tst-env-setuid fails UNSUPPORTED with "SGID failed: GID and EGID match"
and /var/tmp/tst-sonamemove-runmod1.so.profile is created.

If you then try to rerun the test with a suid mounted test-dir
(the SGID binary is created in test-dir which defaults to /tmp)
with something like that:
make tst-env-setuid-ENV="TMPDIR=..." t=elf/tst-env-setuid test
the test fails as the LD_PROFILE output file is still available
from the previous run.

Thus this patch removes the LD_PROFILE output file in parent
before spawning the SGID binary.

Even if LD_PROFILE is not supported anymore in static binaries,
use a different library and thus output file for tst-env-setuid
and tst-env-setuid-static in order to not interfere if both
tests are run in parallel.

Furthermore the checks in test_child are now more verbose.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
elf/Makefile
elf/tst-env-setuid-static.c
elf/tst-env-setuid.c