From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 82843 invoked by alias); 7 Jun 2017 09:54:41 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 82817 invoked by uid 89); 7 Jun 2017 09:54:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*i:sk:w@mail., Hx-languages-length:1195, H*MI:sk:w@mail., H*f:sk:w@mail. X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 25EB23B74B Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=fweimer@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 25EB23B74B Subject: Re: [PATCH] Dynamic growable arrays for internal use To: "H.J. Lu" , Stefan Liebler Cc: GNU C Library References: <37f01ed4-1443-8585-42cb-1b7759416ee7@linux.vnet.ibm.com> From: Florian Weimer Message-ID: Date: Wed, 07 Jun 2017 09:54:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/mixed; boundary="------------E759B3018A5C212F75C4EFB9" X-SW-Source: 2017-06/txt/msg00238.txt.bz2 This is a multi-part message in MIME format. --------------E759B3018A5C212F75C4EFB9 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-length: 487 On 06/06/2017 05:46 PM, H.J. Lu wrote: > I also see: > > ../Rules:198: target > '/export/build/gnu/glibc-test/build-x86_64-linux/malloc/tst-dynarray' > given more than once in the same rule > ../Rules:198: target > '/export/build/gnu/glibc-test/build-x86_64-linux/malloc/tst-dynarray-fail' > given more than once in the same rule The attached patch should fix this. The tests still run, and the warning should be gone. mtrace is a bit special, so I got this wrong at first. Florian --------------E759B3018A5C212F75C4EFB9 Content-Type: text/x-patch; name="test-srcs.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="test-srcs.patch" Content-length: 665 malloc: Remove tst-dynarray, tst-dynarray-fail from test-srcs They are already covered through the tests variable. 2017-06-07 Florian Weimer * malloc/Makefile (test-srcs): Remove tst-dynarray, tst-dynarray-fail. diff --git a/malloc/Makefile b/malloc/Makefile index af025cb..14c13f1 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -53,7 +53,7 @@ tests-static += tst-malloc-usable-static-tunables endif tests += $(tests-static) -test-srcs = tst-mtrace tst-dynarray tst-dynarray-fail +test-srcs = tst-mtrace routines = malloc morecore mcheck mtrace obstack reallocarray \ scratch_buffer_grow scratch_buffer_grow_preserve \ --------------E759B3018A5C212F75C4EFB9--