From patchwork Tue Jul 30 02:03:18 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Terekhov, Mikhail via Gdb-patches" X-Patchwork-Id: 33853 Received: (qmail 37727 invoked by alias); 30 Jul 2019 02:03: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 37714 invoked by uid 89); 30 Jul 2019 02:03:24 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-24.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=H*MI:google X-HELO: mail-yb1-f202.google.com Received: from mail-yb1-f202.google.com (HELO mail-yb1-f202.google.com) (209.85.219.202) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 30 Jul 2019 02:03:23 +0000 Received: by mail-yb1-f202.google.com with SMTP id f1so48034199ybq.3 for ; Mon, 29 Jul 2019 19:03:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20161025; h=date:message-id:mime-version:subject:from:to:cc; bh=B9ewd/bAU1pxqzPvQgI6W5/Far018fdGWZwsS8+T0pM=; b=fFAGPYtPbz9NqKms66IMpFpccxruuZIsuuW3nDdzbD22+Dli3I10lryCUnwmiyK0Ig 2bnercFknj0E+dD2RzXc7aVVuu07yiuC/6UPP4RbWPzkyJ05jNa4y/flkg5gUC+V/98U pP2W2cbof7IX2p50vDoMU/ENCNNAE7pvCLANSd99LgaMDGykJ8R6lyF52dfDz9+tDu9i jSde4flinzg5YJkmgv9kDmUcBDoRihot2eQyx0VmJ0f8CCcomfzFJA6eoMn+J8AcpQBE rNiZLd86YR8Om+XW/Eiwv2vylZ4AVWZScSXGfyFioxr1jMIhBrSTqH6YoU99nk2bUjvq ARgA== Date: Mon, 29 Jul 2019 21:03:18 -0500 Message-Id: <20190730020318.212295-1-cbiesinger@google.com> Mime-Version: 1.0 Subject: [PUSHED/OBVIOUS] Fix misspelling (nonexistant -> nonexistent) X-Patchwork-Original-From: "Christian Biesinger via gdb-patches" From: "Terekhov, Mikhail via Gdb-patches" Reply-To: Christian Biesinger To: gdb-patches@sourceware.org Cc: Christian Biesinger --- gdb/testsuite/gdb.python/py-objfile.exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb/testsuite/gdb.python/py-objfile.exp b/gdb/testsuite/gdb.python/py-objfile.exp index 261f605445..cfe092ebd9 100644 --- a/gdb/testsuite/gdb.python/py-objfile.exp +++ b/gdb/testsuite/gdb.python/py-objfile.exp @@ -66,8 +66,8 @@ gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").lookup_static_symbo "static_var" "lookup_static_symbol finds a valid symbol" gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").lookup_static_symbol (\"global_var\") is None)" \ "True" "lookup_static_symbol does not find global symbol" -gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").lookup_static_symbol (\"nonexistant\"))" \ - "None" "lookup_static_symbol can handle nonexistant symbol" +gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").lookup_static_symbol (\"nonexistent\"))" \ + "None" "lookup_static_symbol can handle nonexistent symbol" set binfile_build_id [get_build_id $binfile] if [string compare $binfile_build_id ""] {