diff options
author | Florian Weimer <fweimer@redhat.com> | 2014-03-24 15:24:02 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2014-04-01 10:29:56 +0200 |
commit | 13f7fe35ae2b0ea55dc4b9628763aafdc8bdc30c (patch) | |
tree | 795c9d70e0d45f280c06e36e89d350dd3fbf8161 /nptl/Makefile | |
parent | c859b32e9d76afe8a3f20bb9528961a573c06937 (diff) | |
download | glibc-13f7fe35ae2b0ea55dc4b9628763aafdc8bdc30c.tar.gz glibc-13f7fe35ae2b0ea55dc4b9628763aafdc8bdc30c.tar.xz glibc-13f7fe35ae2b0ea55dc4b9628763aafdc8bdc30c.zip |
Check for syscall error in the SETXID implementation in NPTL (bug 13347).
At this point, we can only abort the process because we have already switched credentials on other threads. Returning an error would still leave the process in an inconsistent state. The new xtest needs root privileges to run.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 897ac9669c..287622475d 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -270,7 +270,8 @@ tests = tst-typesizes \ tst-vfork1 tst-vfork2 tst-vfork1x tst-vfork2x \ tst-getpid1 tst-getpid2 tst-getpid3 \ tst-initializers1 $(patsubst %,tst-initializers1-%,c89 gnu89 c99 gnu99) -xtests = tst-setuid1 tst-setuid1-static tst-mutexpp1 tst-mutexpp6 tst-mutexpp10 +xtests = tst-setuid1 tst-setuid1-static tst-setuid2 \ + tst-mutexpp1 tst-mutexpp6 tst-mutexpp10 test-srcs = tst-oddstacklimit # Files which must not be linked with libpthread. |