From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 47070 invoked by alias); 17 Aug 2015 16:41:41 -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 47060 invoked by uid 89); 17 Aug 2015 16:41:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f54.google.com Received: from mail-pa0-f54.google.com (HELO mail-pa0-f54.google.com) (209.85.220.54) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 17 Aug 2015 16:41:39 +0000 Received: by paccq16 with SMTP id cq16so68310668pac.1 for ; Mon, 17 Aug 2015 09:41:37 -0700 (PDT) X-Received: by 10.66.222.103 with SMTP id ql7mr4227161pac.144.1439829697315; Mon, 17 Aug 2015 09:41:37 -0700 (PDT) Received: from E107787-LIN (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id k5sm15233577pdb.53.2015.08.17.09.41.35 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 17 Aug 2015 09:41:36 -0700 (PDT) From: Yao Qi To: Keith Seitz Cc: gdb-patches@sourceware.org Subject: Re: [PATCH v6 7/9] Explicit locations: add UI features for CLI References: <1439325928-4723-1-git-send-email-keiths@redhat.com> Date: Mon, 17 Aug 2015 16:41:00 -0000 In-Reply-To: <1439325928-4723-1-git-send-email-keiths@redhat.com> (Keith Seitz's message of "Tue, 11 Aug 2015 13:45:28 -0700") Message-ID: <86a8tp50le.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: 2015-08/txt/msg00429.txt.bz2 Keith Seitz writes: Hi Keith, > + set tst "complete unique function name" > + send_gdb "break -function mai\t" > + gdb_test_multiple "" $tst { > + "break -function mai\\\x07n" { > + send_gdb "\n" > + gdb_test "" ".*Breakpoint \[0-9\]+.*" $tst > + gdb_test_no_output "delete \$bpnum" "delete $tst breakpoint" > + } > + } I got some timeout FAILs on my ubuntu x86_64 machine. (gdb) PASS: gdb.linespec/explicit.exp: complete -line with no value break -function main FAIL: gdb.linespec/explicit.exp: complete unique funct= ion name (timeout) break -function myfunc^H^H^H^H^Hain ^[[KFAIL: gdb.linespec/explicit.exp: co= mplete non-unique function name (timeout) break -function foo^H^H^Hmain FAIL: gdb.linespec/explicit.exp: complete non= -existant function name (timeout) break -source 3ex^G^H^H^H/home/yao/SourceCode/gnu/gdb/git/gdb/testsuite/gdb= .linespec/FAIL: gdb.linespec/explicit.exp: complete unique file name (timeo= ut) break -source exp^G^H^H^H/home/yao/SourceCode/gnu/gdb/git/gdb/testsuite/gdb= .linespec/FAIL: gdb.linespec/explicit.exp: complete non-unique file name (t= imeout) break -source foo^G^H^H^H/home/yao/SourceCode/gnu/gdb/git/gdb/testsuite/gdb= .linespec/ERROR: Process no longer exists UNRESOLVED: gdb.linespec/explicit.exp: complete non-existant file name The fails are shown on Debian-s390x too, https://www.sourceware.org/ml/gdb-testers/2015-q3/msg06879.html I haven't look into them yet. --=20 Yao (=E9=BD=90=E5=B0=A7)