From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 7CFC13959E70 for ; Thu, 17 Nov 2022 08:12:49 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7CFC13959E70 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 9BCBF1F8B3 for ; Thu, 17 Nov 2022 08:12:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1668672767; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=nAI6mYnR6rKoPRGMbseE9QW/4AJ2kRQ3Pspm3HwKkvY=; b=jjFgkeidcv1iGYsF+EzVGYjWvcMcUjFOZtppwmQd+Ir7I/HW+hT4j3ECY6Gd4x9YAux/y7 73+Gg+ZtHdJno9sNWcR5SCxMMGygQK1dwX0HEpWK/k45TOnLh069HIE83c9irFu3MOROa8 QgTbyYu5KeymnN2QKR08+TNlIL+od2s= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1668672767; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=nAI6mYnR6rKoPRGMbseE9QW/4AJ2kRQ3Pspm3HwKkvY=; b=7LchVb5DarcUdK9K4JGE3cZfbbabp6atdFhoaxe2M5XfgIWotP0Ddm0g/TfUc+LqWJ2/07 xg51cJa+bWA69SBQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 7C22B13ADE for ; Thu, 17 Nov 2022 08:12:47 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id XX0LHf/sdWMPPQAAMHmgww (envelope-from ) for ; Thu, 17 Nov 2022 08:12:47 +0000 From: Tom de Vries To: gdb-patches@sourceware.org Subject: [pushed] [gdb/testsuite] Fix DUPLICATE in gdb.arch/ppc-fp.exp Date: Thu, 17 Nov 2022 09:12:47 +0100 Message-Id: <20221117081247.23366-1-tdevries@suse.de> X-Mailer: git-send-email 2.35.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: From: Tom de Vries I noticed: ... DUPLICATE: gdb.arch/ppc-fp.exp: next ... Fix this by adding unique test names. Tested on powerpc64le-linux. --- gdb/testsuite/gdb.arch/ppc-fp.exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb/testsuite/gdb.arch/ppc-fp.exp b/gdb/testsuite/gdb.arch/ppc-fp.exp index bf1a1c59082..bd22d7c489e 100644 --- a/gdb/testsuite/gdb.arch/ppc-fp.exp +++ b/gdb/testsuite/gdb.arch/ppc-fp.exp @@ -61,7 +61,7 @@ gdb_test_multiple "print \$fpscr" "FPSCR exists" { } # Step over invalid operation. -gdb_test "next" "" "" +gdb_test "next" "" "next over invalid operation" # Verify that the following bits are set (See Power ISA for details): # @@ -75,7 +75,7 @@ gdb_test "print/t \$fpscr" " = 10100000001000010001000000000000" "FPSCR for inva gdb_continue_to_breakpoint "go to division by zero" # Step over division by zero. -gdb_test "next" "" "" +gdb_test "next" "" "next over division by zero" # Verify that the following bits are set (See Power ISA for details): # base-commit: d5b9201744fa1dcfcde2e06140efe28819aaef25 -- 2.35.3