This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] float128: Avoid using float binaries in other types' tests


Restrict the pattern to avoid conflicts with other types whose test
names start with "float", e.g. float128.

2017-02-16  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>

	* math/Makefile
	($(addprefix $(objpfx),$(filter test-float% test-ifloat%,$(libm-tests)):
	Restrict the pattern to avoid conflicts with other types whose
	name start with "float".
---
 math/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/math/Makefile b/math/Makefile
index 9e29ad0..b77219f 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -378,7 +378,7 @@ $(addprefix $(objpfx), $(libm-tests.o)): $(addprefix $(objpfx),\
 						     $(libm-tests-generated))
 
 $(addprefix $(objpfx),\
-	    $(filter test-float% test-ifloat%,\
+	    $(filter test-float test-ifloat test-float-% test-ifloat-%,\
 		     $(libm-tests))): $(objpfx)libm-test-support-float.o
 
 $(addprefix $(objpfx),\
-- 
2.1.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]