From patchwork Thu Aug 10 12:24:23 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 22059 Received: (qmail 52469 invoked by alias); 10 Aug 2017 12:25:42 -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 31935 invoked by uid 89); 10 Aug 2017 12:25:29 -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, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com C2AA5FEF03 Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=fweimer@redhat.com Date: Thu, 10 Aug 2017 14:24:23 +0200 To: libc-alpha@sourceware.org Subject: [PATCH] scripts/test-installation.pl: Ignore nss_test* DSOs [BZ #21911] User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Message-Id: <20170810122423.B1965439942E1@oldenburg.str.redhat.com> From: fweimer@redhat.com (Florian Weimer) 2017-08-10 Florian Weimer [BZ #21911] * scripts/test-installation.pl: Ignore nss_test* DSOs. diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl index c5b9fdefd2..4b0e9f3c4a 100755 --- a/scripts/test-installation.pl +++ b/scripts/test-installation.pl @@ -124,7 +124,7 @@ while () { next if ($build_mathvec == 0 && $name eq "mvec"); if ($name ne "nss_ldap" && $name ne "db1" && !($name =~/^nss1_/) && $name ne "thread_db" - && $name ne "nss_test1" && $name ne "libgcc_s") { + && $name !~ /^nss_test\d+/ && $name ne "libgcc_s") { $link_libs .= " -l$name"; $versions{$name} = $version; }