From: Stefan Liebler Date: Wed, 15 Jul 2015 07:33:15 +0000 (+0200) Subject: i686: Mark stdlib/tst-makecontext as XFAIL. X-Git-Tag: glibc-2.22~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6267fd880a3c93a05e731c4ae6d661bc91aaf25;p=thirdparty%2Fglibc.git 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. --- diff --git a/ChangeLog b/ChangeLog index 5c784fcb505..eea74e98d35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-07-15 Stefan Liebler + + * sysdeps/i386/i686/Makefile (test-xfail-tst-makecontext): + New variable. + 2015-07-15 Stefan Liebler * sysdeps/s390/fpu/libm-test-ulps: Regenerated. diff --git a/sysdeps/i386/i686/Makefile b/sysdeps/i386/i686/Makefile index 5ce9fc670ab..83517c48db4 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