From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 6OW6NTBooWE6QAAAWB0awg (envelope-from ) for ; Fri, 26 Nov 2021 18:05:20 -0500 Received: by simark.ca (Postfix, from userid 112) id D938C1F0CE; Fri, 26 Nov 2021 18:05:20 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 637A81EDF0 for ; Fri, 26 Nov 2021 18:05:20 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id EC91B385803B for ; Fri, 26 Nov 2021 23:05:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EC91B385803B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1637967920; bh=5viOiMsIOOxOFGlaj5Jp9gBm1p3NtyPkaWLR2XbuiaA=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=Yu43C6IvyPuBJrYbGTjAVhPfoH5WN86dSDDVvL+3jLKRQpzGz5WBNzmshoaEkFNYj s4dadVjzTQpkB6tF0KlK4MhxHdeyCrLqc9w+NYH6vPNNQXsIkajr5sJCA1j3EFca+Y ptv7lVTcCW0OIPxPWeIn8jlRfXHh9OWmIWkCIdiQ= Received: from lndn.lancelotsix.com (lndn.lancelotsix.com [51.195.220.111]) by sourceware.org (Postfix) with ESMTPS id D222D3857C60 for ; Fri, 26 Nov 2021 23:01:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D222D3857C60 Received: from Plymouth.lan (unknown [IPv6:2a02:390:9086:0:a47d:3441:84f3:f4bc]) by lndn.lancelotsix.com (Postfix) with ESMTPSA id E6B5B85744; Fri, 26 Nov 2021 23:00:59 +0000 (UTC) To: gdb-patches@sourceware.org Subject: [PATCH 09/12] gdb/testsuite: Remove duplicates from gdb.mi/mi-var-rtti.exp Date: Fri, 26 Nov 2021 23:00:35 +0000 Message-Id: <20211126230038.103225-10-lsix@lancelotsix.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211126230038.103225-1-lsix@lancelotsix.com> References: <20211126230038.103225-1-lsix@lancelotsix.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.11 (lndn.lancelotsix.com [0.0.0.0]); Fri, 26 Nov 2021 23:01:00 +0000 (UTC) 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: , From: Lancelot SIX via Gdb-patches Reply-To: Lancelot SIX Cc: Lancelot SIX Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" When running the testsuite, I have: Running .../gdb/testsuite/gdb.mi/mi-var-rtti.exp ... DUPLICATE: gdb.mi/mi-var-rtti.exp: list children of ptr.Base.public (with RTTI) in use_rtti_with_multiple_inheritence DUPLICATE: gdb.mi/mi-var-rtti.exp: list children of ptr (without RTTI) in skip_type_update_when_not_use_rtti DUPLICATE: gdb.mi/mi-var-rtti.exp: list children of ptr.public (without RTTI) in skip_type_update_when_not_use_rtti DUPLICATE: gdb.mi/mi-var-rtti.exp: list children of s.ptr (without RTTI) in skip_type_update_when_not_use_rtti DUPLICATE: gdb.mi/mi-var-rtti.exp: list children of s.ptr.public (without RTTI) in skip_type_update_when_not_use_rtti Fix by adjusting the test names. Tested on x86_64-linux. --- gdb/testsuite/gdb.mi/mi-var-rtti.cc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gdb/testsuite/gdb.mi/mi-var-rtti.cc b/gdb/testsuite/gdb.mi/mi-var-rtti.cc index 30b46173eba..6ea2636e19c 100644 --- a/gdb/testsuite/gdb.mi/mi-var-rtti.cc +++ b/gdb/testsuite/gdb.mi/mi-var-rtti.cc @@ -218,7 +218,7 @@ void use_rtti_with_multiple_inheritence_test () } "list children of ptr.First (with RTTI) in $testname" mi_list_varobj_children "VAR.First.public" { { VAR.First.public.F F 0 int } - } "list children of ptr.Base.public (with RTTI) in $testname" + } "list children of ptr.First.public (with RTTI) in $testname" mi_list_varobj_children "VAR.Base" { { VAR.Base.public public 1 } } "list children of ptr.Base (with RTTI) in $testname" @@ -325,13 +325,15 @@ void skip_type_update_when_not_use_rtti_test () ptr = &d; s.ptr = &d; /*: - mi_varobj_update PTR {PTR PTR.public.A} \ + with_test_prefix "after_assign" { + mi_varobj_update PTR {PTR PTR.public.A} \ "update ptr to derived type in $testname" - check_derived_without_rtti PTR ptr $testname + check_derived_without_rtti PTR ptr $testname - mi_varobj_update S {S.public.ptr S.public.ptr.public.A} \ + mi_varobj_update S {S.public.ptr S.public.ptr.public.A} \ "update s to derived type in $testname" - check_derived_without_rtti S.public.ptr s.ptr $testname + check_derived_without_rtti S.public.ptr s.ptr $testname + } :*/ ptr = 0; -- 2.33.1