From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 43323 invoked by alias); 20 Jun 2015 04:47:37 -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 43311 invoked by uid 89); 20 Jun 2015 04:47:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qk0-f172.google.com Received: from mail-qk0-f172.google.com (HELO mail-qk0-f172.google.com) (209.85.220.172) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Sat, 20 Jun 2015 04:47:35 +0000 Received: by qkhu186 with SMTP id u186so71358441qkh.0 for ; Fri, 19 Jun 2015 21:47:33 -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:subject:date:message-id; bh=bQjgBurQTZFg+z80O+Pk8kpjXWRaOZIyRg95fwlOpP0=; b=FyAFKYp0jr6qk6HwWZduIvnhY7WIkQURgdDJeXVkSBN39dvoyZTpVHgnXsWtFTu08Z vNSZG37kxGYkHQQgNNqtExcJ2kz//JkiDcO0aTzCQJ+HtwtPDQj4LgWifvweAYlt/Ig3 dkZNJ/b6Ydobd9FwPJBFmvLITvLsIM98PYABYoXDYgvw5EANUn4+tztatl0jIAPHR0C/ 8/96TJL3jzZjcUKSGBuPQksEd4xwYvIzQlxXoS7Ml1UZnG5FJQf1cDUmosJK2c0LuLUv AiWfBPQcQ5uUnWs/y8mu8GgrBL/rPTKXnKKRfJdQiA1jxmdLDSi+hnoHy5qNqQZUom+V pb7g== X-Gm-Message-State: ALoCoQlMZJm6fGngo3Uoghn7Kh7Rqkc5px14XMCtXlK3UyEU5mUim/MYHQ+6tIV9ypVzBu4DbcVf X-Received: by 10.140.216.18 with SMTP id m18mr27319824qhb.19.1434775652953; Fri, 19 Jun 2015 21:47:32 -0700 (PDT) Received: from localhost.localdomain ([181.31.101.84]) by mx.google.com with ESMTPSA id g17sm6801384qkh.18.2015.06.19.21.47.31 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 19 Jun 2015 21:47:32 -0700 (PDT) From: Martin Galvan To: gdb-patches@sourceware.org Subject: [PING][PATCH] testsuite: Escape a loose '[' character inside a regexp. Date: Sat, 20 Jun 2015 04:47:00 -0000 Message-Id: <1434775646-2625-1-git-send-email-martin.galvan@tallertechnologies.com> X-SW-Source: 2015-06/txt/msg00413.txt.bz2 Seems like an obvious fix to me, but I wanted to check just in case. Ok to commit? --- gdb/testsuite/ChangeLog | 4 ++++ gdb/testsuite/lib/gdb.exp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index e01f883..95338b3 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-06-13 Martin Galvan + + * lib/gdb.exp (test_class_help): Escape a loose '['. + 2015-06-12 Antoine Tremblay PR breakpoints/16465 diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 41797e7..2be9ba4 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -4674,7 +4674,7 @@ proc test_class_help { command_class expected_initial_lines args } { set l_stock_body { "List of commands\:.*\[\r\n\]+" "Type \"help\" followed by command name for full documentation\.\[\r\n\]+" - "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n\]+" + "Type \"apropos word\" to search for commands related to \"word\"\.\[\r\n\]+" "Command name abbreviations are allowed if unambiguous\." } set l_entire_body [concat $expected_initial_lines $l_stock_body] -- 2.4.3