From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24416 invoked by alias); 20 Jan 2016 13:49:28 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 24331 invoked by uid 89); 20 Jan 2016 13:49:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=H*r:sk:47.2016, gnu_vector.exp, gnu_vectorexp, UD:gnu_vector.exp X-HELO: mail-pf0-f196.google.com Received: from mail-pf0-f196.google.com (HELO mail-pf0-f196.google.com) (209.85.192.196) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 20 Jan 2016 13:49:24 +0000 Received: by mail-pf0-f196.google.com with SMTP id n128so431698pfn.3 for ; Wed, 20 Jan 2016 05:49:23 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-type :content-transfer-encoding; bh=feV1N0jpO9IRpa2Z/Fkpfx2snElkZ9ckshmpEnD5Umo=; b=hrLDNfTMKijv+9CSYyvF/H0qoWRf9cjHm+Uvw0MYNe7vteC8HDUXP9cGwDXisICBTH lkLhvZgzuRStiKtpttm4Ps/sO4sCHUhp0mXHphgCVIE80jTgftDSwtsBa4kXULUIwg19 ig5aR7rIzzqX0t6CPio6QNUTV3HfBCK/3HudKBlaUwcN39VC1xBeViNvqBbzEKT6SXuQ 2KAmdUAZqo/U1N/tvgJgB5IxglHoZxpnzvlA1yw14dp9MJOl6c4VCET6lfBpkfNRjl+x dpf2T3wz/BOBs3GhOgYJGyfQpdraiJ0fcv26fc4fzisJ2OwjG76Nf7/iAxG+n4pHgCIb LwtQ== X-Gm-Message-State: ALoCoQnZdsGMRo49NpGRbn031IoHK+hAymuEz9tqTpyqtN3WrlXeVgXrQgWXvHEuKhO3rXlk9NKRGVVfxlG2N2pZu+TolD+44g== X-Received: by 10.98.70.17 with SMTP id t17mr52038277pfa.107.1453297762377; Wed, 20 Jan 2016 05:49:22 -0800 (PST) Received: from E107787-LIN (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id m87sm49073552pfi.47.2016.01.20.05.49.19 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Wed, 20 Jan 2016 05:49:21 -0800 (PST) From: Yao Qi To: Andreas Arnez Cc: gdb-patches@sourceware.org, Yao Qi Subject: Re: [PATCH v2] gnu_vector.exp: Respect `should_kfail' for PR8549 References: Date: Wed, 20 Jan 2016 13:49:00 -0000 In-Reply-To: (Andreas Arnez's message of "Wed, 20 Jan 2016 12:48:18 +0100") Message-ID: <86k2n4s6n6.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2016-01/txt/msg00473.txt.bz2 Andreas Arnez writes: Hi Andreas, Patch is OK to me, > -gdb_test "p res" "\\{4, 2, 7, 6\\}.*" "verify vector return value" > +set test "verify vector return value" > +gdb_test_multiple "p res" $test { > + -re ".*=3D \\{4, 2, 7, 6\\}\r\n.*$gdb_prompt $" { > + pass $test > + } > + -re ".*=3D \\{.*\\}\r\n.*$gdb_prompt $" { > + if { $should_kfail } { > + # GDB had not actually set the return value, likely due to > + # PR8549. So accept any return value and emit a KFAIL. Nit, we need a space between "PR" and "8549". --=20 Yao (=E9=BD=90=E5=B0=A7)