From patchwork Wed Mar 4 22:19:05 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland McGrath X-Patchwork-Id: 446459 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 210D0140161 for ; Thu, 5 Mar 2015 09:19:15 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass reason="1024-bit key; unprotected key" header.d=sourceware.org header.i=@sourceware.org header.b=cLWHU1Ty; dkim-adsp=none (unprotected policy); 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:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; q= dns; s=default; b=sPj9BWtHlWAGIpJPjYJl3jujWTVcRjrtHBhMFaj1oX/p9J 7DZqJRPy9VkN16Id3Kwkem/KmVTbjYkYSRuZu1LQ+a4GeGxfB9mS4BMNLMrHgjiX IknHhsX0KVSB842eWdekwcEJXzOKX4PQWPcK+4Koqggqh5ND0BFcRSaip6iJY= 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:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; s= default; bh=L5JVOqMIIatQUmHMX2Iq0oN7bnA=; b=cLWHU1Ty50JdAYncnuqM y4ZANCmTChEq4juGjOnsUU5aDGiTQjW5f7UaEV3mCDcpp/P5lwvOOb3C1mwo3MYZ 8UZ3aGCUyyctPCpBtJAgQTyWay9K/A+RniY8JecCZ3KitU+Zih67EvcyrsbHAakr DfykUXb9oq+xvny3Apx2hWI= Received: (qmail 128560 invoked by alias); 4 Mar 2015 22:19:09 -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 128550 invoked by uid 89); 4 Mar 2015 22:19:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: topped-with-meat.com MIME-Version: 1.0 From: Roland McGrath To: "GNU C. Library" Subject: [COMMITTED PATCH] Avoid more C++ tests. Message-Id: <20150304221905.BDA102C3B7B@topped-with-meat.com> Date: Wed, 4 Mar 2015 14:19:05 -0800 (PST) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=SvUDtp+0 c=1 sm=1 tr=0 a=WkljmVdYkabdwxfqvArNOQ==:117 a=14OXPxybAAAA:8 a=kj9zAlcOel0A:10 a=hOe2yjtxAAAA:8 a=SaKuM2dbgr6sgQQ72LIA:9 a=CjuIK1q_8ugA:10 Missed the ones in elf/ that don't actually link with -lstdc++ but need C++ headers that will also be missing when libstdc++ is missing. Thanks, Roland * elf/Makefile (tests, modules-names): Likewise for tst-unique3, tst-unique3lib, tst-unique3lib2, tst-unique4, and tst-unique4lib. --- a/elf/Makefile +++ b/elf/Makefile @@ -144,7 +144,7 @@ tests += loadtest restest1 preloadtest loadfail multiload origtest resolvfail \ unload3 unload4 unload5 unload6 unload7 unload8 tst-global1 order2 \ tst-audit1 tst-audit2 tst-audit8 tst-audit9 \ tst-stackguard1 tst-addr1 tst-thrlock \ - tst-unique1 tst-unique2 tst-unique3 tst-unique4 \ + tst-unique1 tst-unique2 $(if $(CXX),tst-unique3 tst-unique4) \ tst-initorder tst-initorder2 tst-relsort1 tst-null-argv \ tst-ptrguard1 # reldep9 @@ -205,8 +205,7 @@ modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \ tst-unique1mod1 tst-unique1mod2 \ tst-unique2mod1 tst-unique2mod2 \ tst-auditmod9a tst-auditmod9b \ - tst-unique3lib tst-unique3lib2 \ - tst-unique4lib \ + $(if $(CXX),tst-unique3lib tst-unique3lib2 tst-unique4lib) \ tst-initordera1 tst-initorderb1 \ tst-initordera2 tst-initorderb2 \ tst-initordera3 tst-initordera4 \