From: Andreas Schwab Date: Thu, 2 Jul 2026 11:14:19 +0000 (+0200) Subject: sysdeps/x86: don't spuriously mark tests as xfail X-Git-Tag: glibc-2.44~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db59f396469dfa6b44c212ea1b0ee6e7b4cbf065;p=thirdparty%2Fglibc.git sysdeps/x86: don't spuriously mark tests as xfail Properly set xfail marker, $(with-lld) is always non-empty. --- diff --git a/sysdeps/x86/Makefile b/sysdeps/x86/Makefile index b16f4a3404..232e388d32 100644 --- a/sysdeps/x86/Makefile +++ b/sysdeps/x86/Makefile @@ -50,8 +50,10 @@ tests += \ tests-static += \ tst-ifunc-isa-1-static \ # tests-static -test-xfail-tst-ifunc-isa-1 = $(with-lld) -test-xfail-tst-ifunc-isa-1-static = $(with-lld) +ifneq (no, $(with-lld)) +test-xfail-tst-ifunc-isa-1 = yes +test-xfail-tst-ifunc-isa-1-static = yes +endif tests += \ tst-ifunc-isa-2 \ tst-ifunc-isa-2-static \ @@ -59,8 +61,10 @@ tests += \ tests-static += \ tst-ifunc-isa-2-static \ # tests-static -test-xfail-tst-ifunc-isa-2 = $(with-lld) -test-xfail-tst-ifunc-isa-2-static = $(with-lld) +ifneq (no, $(with-lld)) +test-xfail-tst-ifunc-isa-2 = yes +test-xfail-tst-ifunc-isa-2-static = yes +endif endif endif ifeq (yes,$(enable-x86-isa-level))