diff options
author | Stefan Liebler <stli@linux.vnet.ibm.com> | 2015-07-15 09:33:15 +0200 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2015-07-15 09:33:15 +0200 |
commit | f6267fd880a3c93a05e731c4ae6d661bc91aaf25 (patch) | |
tree | ba52db679845d0175f1a6ff622bca856dc2e444c /sysdeps/i386/i686/Makefile | |
parent | ed95ec72fbe2ca35063dc80e6fd2931348439fc4 (diff) | |
download | glibc-f6267fd880a3c93a05e731c4ae6d661bc91aaf25.tar.gz glibc-f6267fd880a3c93a05e731c4ae6d661bc91aaf25.tar.xz glibc-f6267fd880a3c93a05e731c4ae6d661bc91aaf25.zip |
i686: Mark stdlib/tst-makecontext as XFAIL.
The testcase stdlib/tst-makecontext fails on i686 because _Unwind_Backtrace from libgcc produces a segmentation fault if it was called within a context created by makecontext. See Bug 18635. ChangeLog: * sysdeps/i386/i686/Makefile (test-xfail-tst-makecontext): New variable.
Diffstat (limited to 'sysdeps/i386/i686/Makefile')
-rw-r--r-- | sysdeps/i386/i686/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/i386/i686/Makefile b/sysdeps/i386/i686/Makefile index 5ce9fc670a..83517c48db 100644 --- a/sysdeps/i386/i686/Makefile +++ b/sysdeps/i386/i686/Makefile @@ -18,3 +18,9 @@ ASFLAGS-.op += -Wa,-mtune=i686 ASFLAGS-.og += -Wa,-mtune=i686 ASFLAGS-.oS += -Wa,-mtune=i686 endif + +ifeq ($(subdir),stdlib) +# _Unwind_Backtrace from libgcc produces a segmentation fault if it was +# called within a context created by makecontext. See Bug 18635. +test-xfail-tst-makecontext = yes +endif |