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.
This commit is contained in:
Stefan Liebler 2015-07-15 09:33:15 +02:00 committed by Andreas Krebbel
parent ed95ec72fb
commit f6267fd880
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2015-07-15 Stefan Liebler <stli@linux.vnet.ibm.com>
* sysdeps/i386/i686/Makefile (test-xfail-tst-makecontext):
New variable.
2015-07-15 Stefan Liebler <stli@linux.vnet.ibm.com>
* sysdeps/s390/fpu/libm-test-ulps: Regenerated.

View File

@ -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