From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by sourceware.org (Postfix) with ESMTPS id BD3B3389FC20 for ; Wed, 7 Apr 2021 14:56:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org BD3B3389FC20 IronPort-SDR: lP2wpp8UAdRATct9FcKR/BSGYAVFVa0tAphcuaDwNsk3O62QzrSelODKa9zAsG0N7Gwc/QOyzP DcuOtaw8MUIA== X-IronPort-AV: E=McAfee;i="6000,8403,9947"; a="190119859" X-IronPort-AV: E=Sophos;i="5.82,203,1613462400"; d="scan'208";a="190119859" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Apr 2021 07:56:29 -0700 IronPort-SDR: wuDExRw9cZMwTgepoy+tiAc5UbLtzGTo6A3hgyePJ0V4k4T3T0xizxAfgl19UVFi0xp3lC4vVl H3W3pguIdX0Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,203,1613462400"; d="scan'208";a="415300511" Received: from irvmail001.ir.intel.com ([10.43.11.63]) by fmsmga008.fm.intel.com with ESMTP; 07 Apr 2021 07:56:28 -0700 Received: from ulvlx001.iul.intel.com (ulvlx001.iul.intel.com [172.28.207.17]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id 137EuSr8012825; Wed, 7 Apr 2021 15:56:28 +0100 Received: from ulvlx001.iul.intel.com (localhost [127.0.0.1]) by ulvlx001.iul.intel.com with ESMTP id 137EuRZe011112; Wed, 7 Apr 2021 16:56:27 +0200 Received: (from taktemur@localhost) by ulvlx001.iul.intel.com with LOCAL id 137EuRXG011108; Wed, 7 Apr 2021 16:56:27 +0200 From: Tankut Baris Aktemur To: gdb-patches@sourceware.org Subject: [PATCH 2/4] testsuite, gdb.mi: fix duplicate test names in mi-break.exp Date: Wed, 7 Apr 2021 16:55:57 +0200 Message-Id: <77d4ac57ada8013cf55e111b073a849334dd10da.1617806598.git.tankut.baris.aktemur@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: References: In-Reply-To: References: X-Spam-Status: No, score=-6.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, TXREP, UNWANTED_LANGUAGE_BODY autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Apr 2021 14:56:32 -0000 gdb/testsuite/ChangeLog: 2021-04-07 Tankut Baris Aktemur * gdb.mi/mi-break.exp: Fix the duplicate test names. --- gdb/testsuite/gdb.mi/mi-break.exp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gdb/testsuite/gdb.mi/mi-break.exp b/gdb/testsuite/gdb.mi/mi-break.exp index a7c37b365e9..9d3d7ade6dc 100644 --- a/gdb/testsuite/gdb.mi/mi-break.exp +++ b/gdb/testsuite/gdb.mi/mi-break.exp @@ -93,7 +93,7 @@ proc test_tbreak_creation_and_listing {} { mi_gdb_test "777-break-delete" \ "777\\^done" \ - "delete temp breakpoints" + "delete tbreak temp breakpoints" } proc test_rbreak_creation_and_listing {} { @@ -162,7 +162,7 @@ proc test_rbreak_creation_and_listing {} { mi_gdb_test "177-break-delete" \ "177\\^done" \ - "delete temp breakpoints" + "delete rbreak temp breakpoints" } proc test_abreak_creation {} { @@ -281,7 +281,7 @@ proc test_breakpoint_commands {} { mi_gdb_test "-break-commands 9 \"bt\" \"set \$i=0\" \"while \$i<10\" \"print \$i\" \"set \$i=\$i+1\" \"end\" \"continue\" " \ "\\^done" \ - "breakpoint commands: set commands" + "breakpoint commands: set more commands" mi_send_resuming_command "exec-continue" "breakpoint commands: continue" @@ -365,7 +365,7 @@ proc test_explicit_breakpoints {} { mi_gdb_test "-break-delete" \ "\\^done" \ - "delete temp breakpoints" + "delete explicit temp breakpoints" mi_create_breakpoint "-c \"intarg == 3\" --function callee2" \ "insert explicit conditional breakpoint in callee2" \ -- 2.17.1