From patchwork Sat Sep 10 10:41:31 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 668362 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3sWVyB4735z9stc for ; Sat, 10 Sep 2016 20:42:26 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=qmfLyXny; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; q=dns; s= default; b=D0TThxHVaGaZpQ03xWtscJAtvX2uqcovqwYPyiKbPGY8+vDQSmDWr fDEg6jzF/rX3+os+7SnsWtKZDUjWL2dTL0rFOUeJ7kZ2El3KK2JPr4Ru1L/kjUT2 Eiz3nm1GIpCWcIc2xcr4NyzMrwtqqBPtCuvAWWtkDrAEcYMATGPTmA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; s=default; bh=BqB77Hc6wYsSSr6+FTt8XpwYWDc=; b=qmfLyXny4LA9HnmEuvrQC8aXDoTS 0HcbyHMotQizkGcgupC5VUvOC1cjLyxhk6YN8pcmxyTRn2j04qRDhB9J+CYMfAcb Liyd86wL21zr6801Ig0L6gWOAzZmQsWs3UckseXwHdRqKPRntcyhzm3zS8GIppKR CdSF+PlJUEnUuhA= Received: (qmail 98126 invoked by alias); 10 Sep 2016 10:42:20 -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 98093 invoked by uid 89); 10 Sep 2016 10:42:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, SPF_NEUTRAL, URIBL_RED autolearn=no version=3.3.2 spammy=Hx-languages-length:1421, siddheshsourcewareorg, siddhesh@sourceware.org, siddhesh X-HELO: homiemail-a46.g.dreamhost.com From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [PATCH] Add tests-static to tests in malloc/Makefile Date: Sat, 10 Sep 2016 16:11:31 +0530 Message-Id: <1473504091-4342-1-git-send-email-siddhesh@sourceware.org> This is a trivial change to add the static tests only to tests-static and then adding all of tests-static to the tests target to make it look consistent with some other Makefiles. This avoids having to duplicate the test names across the two make targets. * malloc/Makefile (tests): Remove individual static test names and just add all of tests-static. --- ChangeLog | 3 +++ malloc/Makefile | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 607508d..b417ee7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2016-09-10 Siddhesh Poyarekar + * malloc/Makefile (tests): Remove individual static test names + and just add all of tests-static. + * csu/libc-start.c (__libc_csu_irel): Remove declaration. 2016-09-07 Joseph Myers diff --git a/malloc/Makefile b/malloc/Makefile index 037e830..d79d66f 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -33,13 +33,12 @@ tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \ tst-mallocfork2 \ tst-interpose-nothread \ tst-interpose-thread \ - tst-interpose-static-nothread \ - tst-interpose-static-thread \ tests-static := \ tst-interpose-static-nothread \ tst-interpose-static-thread \ +tests += $(tests-static) test-srcs = tst-mtrace routines = malloc morecore mcheck mtrace obstack \