From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 66248 invoked by alias); 13 Jun 2016 14:52:56 -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 66227 invoked by uid 89); 13 Jun 2016 14:52:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=HX-Received:10.98.21.4 X-HELO: mail-pf0-f180.google.com Received: from mail-pf0-f180.google.com (HELO mail-pf0-f180.google.com) (209.85.192.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 13 Jun 2016 14:52:53 +0000 Received: by mail-pf0-f180.google.com with SMTP id 62so47003361pfd.1 for ; Mon, 13 Jun 2016 07:52:53 -0700 (PDT) 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-transfer-encoding; bh=YZid1uPGRJnqB0qlKHNBUrIhAS31E021GTFWRUQcX5g=; b=dX4/7xhjE+Swr6kzLe3I9MucMVfToFlJthmRrDPZX3QrNytC7lQ572XT9EpSaauHI7 ow6zVm/Z6N4Cy6+Nh80NE36cPwJ3AvhXdpOt+yEooMVq4fdxN7WQgGpWCf1Flj4DUCK6 T1oU9qIhDqpsnR4v4Dqfadv6JxPH5h+p4CDThR//j/KdRqtFx50PywRShXjD29S2Djce rV6wchmmi0wrIvVlAFkE8czBB7QJKL/s88Q9XST8Sh/ygk1RCAH+z26ojWbtxriUtiNH 5+E7Ucdf/1bcA9Chicor+wFGaR3ZtDsDwb0JOAzZvF7VziuMwD4b/m7WkFNziYr7OnO3 6HjQ== X-Gm-Message-State: ALyK8tKbwgTSDePVFCrqPlv1q1ADT7wrlXMcX2HMFj2ZiC1yENlT2HOR1BkIKncxRIxAYQ== X-Received: by 10.98.21.4 with SMTP id 4mr21171335pfv.92.1465829572081; Mon, 13 Jun 2016 07:52:52 -0700 (PDT) Received: from E107787-LIN (gcc113.osuosl.org. [140.211.9.71]) by smtp.gmail.com with ESMTPSA id yp4sm4239768pab.48.2016.06.13.07.52.50 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Mon, 13 Jun 2016 07:52:51 -0700 (PDT) From: Yao Qi To: Pedro Alves Cc: Yao Qi , gdb-patches@sourceware.org Subject: Re: [PATCH 03/12] Step over exit with reinsert breakpoints References: <1464859846-15619-1-git-send-email-yao.qi@linaro.org> <1464859846-15619-4-git-send-email-yao.qi@linaro.org> Date: Mon, 13 Jun 2016 14:52:00 -0000 In-Reply-To: (Pedro Alves's message of "Mon, 13 Jun 2016 15:36:57 +0100") Message-ID: <86y469ta2r.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-06/txt/msg00232.txt.bz2 Pedro Alves writes: >> +gdb_test "continue" "exited normally.*" "continue to end (2)" >> +gdb_test "inferior 1" ".*Switching to inferior 1.*" \ >> + "switch back to inferior 1 (2)" > > Please don't use trailing " ($foo)" to differentiate tests (throughout). so, I use "first time" and "second time" to differentiate the test, like gdb_test "inferior 1" ".*Switching to inferior 1.*" \ "switch back to inferior 1, second time" --=20 Yao (=E9=BD=90=E5=B0=A7)