From patchwork Fri Nov 25 17:09:04 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Machado X-Patchwork-Id: 17888 Received: (qmail 101669 invoked by alias); 25 Nov 2016 17:09:24 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 101599 invoked by uid 89); 25 Nov 2016 17:09:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy=offender X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 25 Nov 2016 17:09:16 +0000 Received: from svr-orw-fem-06.mgc.mentorg.com ([147.34.97.120]) by relay1.mentorg.com with esmtp id 1cAJzw-0001V9-45 from Luis_Gustavo@mentor.com for gdb-patches@sourceware.org; Fri, 25 Nov 2016 09:09:16 -0800 Received: from Opsys.world.mentorg.com (147.34.91.1) by SVR-ORW-FEM-06.mgc.mentorg.com (147.34.97.120) with Microsoft SMTP Server id 14.3.224.2; Fri, 25 Nov 2016 09:09:15 -0800 From: Luis Machado To: Subject: [PATCH 8/8] Fix test names starting with uppercase using multi-line gdb_test_multiple Date: Fri, 25 Nov 2016 11:09:04 -0600 Message-ID: <1480093744-13771-9-git-send-email-lgustavo@codesourcery.com> In-Reply-To: <1480093744-13771-1-git-send-email-lgustavo@codesourcery.com> References: <1480093744-13771-1-git-send-email-lgustavo@codesourcery.com> MIME-Version: 1.0 X-IsSubscribed: yes This fixes offender testcases that have test names starting with uppercase when using gdb_test_multiple in a multi-line construct. gdb/testsuite/ChangeLog 2016-11-25 Luis Machado Fix test names starting with uppercase throughout the files. * gdb/testsuite/gdb.cp/gdb2495.exp --- gdb/testsuite/gdb.cp/gdb2495.exp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/testsuite/gdb.cp/gdb2495.exp b/gdb/testsuite/gdb.cp/gdb2495.exp index dff5977..7e4dfa8 100644 --- a/gdb/testsuite/gdb.cp/gdb2495.exp +++ b/gdb/testsuite/gdb.cp/gdb2495.exp @@ -95,7 +95,7 @@ gdb_test "info breakpoints" \ # Turn off this new behaviour. gdb_test_multiple "set unwind-on-terminating-exception off" \ - "Turn unwind-on-terminating-exception off" { + "turn unwind-on-terminating-exception off" { -re "$gdb_prompt $" {pass "set unwinn-on-terminating-exception off"} timeout {fail "(timeout) set unwind-on-terminating-exception off"} }