From patchwork Thu Feb 16 13:29:35 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tulio Magno Quites Machado Filho X-Patchwork-Id: 19270 X-Patchwork-Delegate: joseph@codesourcery.com Received: (qmail 6756 invoked by alias); 16 Feb 2017 13:30:00 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 6737 invoked by uid 89); 16 Feb 2017 13:29:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 spammy= X-HELO: mx0a-001b2d01.pphosted.com From: "Tulio Magno Quites Machado Filho" To: libc-alpha@sourceware.org Subject: [PATCH] float128: Avoid using float binaries in other types' tests Date: Thu, 16 Feb 2017 11:29:35 -0200 X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 17021613-0028-0000-0000-000001965153 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17021613-0029-0000-0000-0000149353C9 Message-Id: <1487251775-25884-1-git-send-email-tuliom@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:, , definitions=2017-02-16_10:, , signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=1 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1612050000 definitions=main-1702160133 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 * 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),\