]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
sysdeps/x86: don't spuriously mark tests as xfail
authorAndreas Schwab <schwab@suse.de>
Thu, 2 Jul 2026 11:14:19 +0000 (13:14 +0200)
committerAndreas Schwab <schwab@suse.de>
Mon, 6 Jul 2026 07:36:06 +0000 (09:36 +0200)
Properly set xfail marker, $(with-lld) is always non-empty.

sysdeps/x86/Makefile

index b16f4a34049ef9777b28f654edd3044330374e05..232e388d32500730b5fe28f9c62c1ce5a4941690 100644 (file)
@@ -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))