diff mbox

float128: Avoid using float binaries in other types' tests

Message ID 1487251775-25884-1-git-send-email-tuliom@linux.vnet.ibm.com
State New
Headers show

Commit Message

Tulio Magno Quites Machado Filho Feb. 16, 2017, 1:29 p.m. UTC
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 mbox

Patch

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),\