From patchwork Thu Feb 21 19:55:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Patsy Griffin X-Patchwork-Id: 1046437 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-100200-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="pbj74hsv"; dkim-atps=neutral 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 4454wX5R5dz9s2R for ; Fri, 22 Feb 2019 06:56:11 +1100 (AEDT) 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:from:date:message-id:subject:to :content-type; q=dns; s=default; b=quDmnzTWputNria2Nx9Dix4qfMIIe SmU/VpDy92mVudVHr1Cs2HWi7lk98KV9jjMS6Nh0cnq5sfSftTCtSqK3mZ2IceGV /TSqI7nWSc31Nxo10hNndB5FFsI9783swFqjoEA+KXukf88GZ/aSMqiioVJvx9Z5 2dpz8rdTlyyWBw= 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:from:date:message-id:subject:to :content-type; s=default; bh=w6+44UZkT+hZlYX5DOO6Es3KR2A=; b=pbj 74hsvYvUIwTWJLbJqkGrub45hJsQwKdxXaVA3QaSomqlgkeBvETYWWx5Ep8yQ1lx loJ3ttm9s0Iw63zu0RSuQtZiCLPJphKLkHXboMLZxuEurAG3ytrt+zJ5v9mlBa6r iSvwC2TIVHsaSCdpBrRh751I6hi0NBQ/aVeUzpMw= Received: (qmail 51051 invoked by alias); 21 Feb 2019 19:56:06 -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 50968 invoked by uid 89); 21 Feb 2019 19:56:04 -0000 Authentication-Results: sourceware.org; auth=none 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, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy= X-HELO: mail-io1-f67.google.com MIME-Version: 1.0 From: Patsy Franklin Date: Thu, 21 Feb 2019 14:55:24 -0500 Message-ID: Subject: [PATCH] Add nss/tst-nss-files-hosts-long.root/etc/host.conf To: GNU C Library [BZ #21915] Add /etc/host.conf file with 'multi on' to tst-nss-files-hosts-long.root. Ensures the entire file, and all long lines, need to be parsed for the test. Testing: Confirmed that the test passes with the current (fixed) sources on x86_64. Also confirmed that the test fails with a source tree that does not have BZ 21915 applied, again on x86_64. Testing was carried out on a RHEL7 system. Also used gdb to confirm that "multi on" is set. Reviewed-by: Carlos O'Donell From efe4ee85ae0b9c6afefccb353aeb54e3109d2de6 Mon Sep 17 00:00:00 2001 From: Patsy Franklin Date: Wed, 20 Feb 2019 17:07:19 -0500 Subject: [PATCH] nss: tst-nss-files-hosts-long: Add host.conf [BZ #21915] Add /etc/host.conf file with 'multi on' to tst-nss-files-hosts-long.root. Ensures the entire file, and all long lines, need to be parsed for the test. --- ChangeLog | 5 +++++ nss/tst-nss-files-hosts-long.root/etc/host.conf | 1 + 2 files changed, 6 insertions(+) create mode 100644 nss/tst-nss-files-hosts-long.root/etc/host.conf diff --git a/ChangeLog b/ChangeLog index 326201af9b..cae8e1c4cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2019-02-21 Patsy Griffin Franklin + + [BZ #21915] + * nss/tst-nss-files-hosts-long.root/etc/host.conf: New file. + 2019-02-20 Martin Liska * math/Makefile: Install math-vector-fortran.h. diff --git a/nss/tst-nss-files-hosts-long.root/etc/host.conf b/nss/tst-nss-files-hosts-long.root/etc/host.conf new file mode 100644 index 0000000000..d1a59f73a9 --- /dev/null +++ b/nss/tst-nss-files-hosts-long.root/etc/host.conf @@ -0,0 +1 @@ +multi on -- 2.17.1