From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id oOzLCrwFn2KEKQsAWB0awg (envelope-from ) for ; Tue, 07 Jun 2022 04:01:00 -0400 Received: by simark.ca (Postfix, from userid 112) id 061F31E222; Tue, 7 Jun 2022 04:01:00 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=ltR2/Y+k; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) 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.6 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 5B8B11E220 for ; Tue, 7 Jun 2022 04:00:59 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id AF9EF382CB91 for ; Tue, 7 Jun 2022 08:00:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AF9EF382CB91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1654588857; bh=slFBTLOAZcb6yP9rDcZzNAyWBC1tgzZY8RqNbQh4alU=; h=Date:To:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=ltR2/Y+kq1GHSCJ3lHj79cGvc8XR3f9Fxm4JkcVFVjjL7CFoZJnsQZ95D1smgnXhe 1dqKqpQJ4kaCiBcyie/f3101PQi4BShP9ZsUYncyVhqH7FoOTUxoGOg9mJPseHLTP3 7fEx9RM+OVudKgVsSGoTrZJvzsehV2VsECFdjTIA= Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 0D4E7384D166 for ; Tue, 7 Jun 2022 08:00:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 0D4E7384D166 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 EAEBD1F88C for ; Tue, 7 Jun 2022 08:00:36 +0000 (UTC) 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 D69EB13A88 for ; Tue, 7 Jun 2022 08:00:36 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id c1lGM6QFn2LMCgAAMHmgww (envelope-from ) for ; Tue, 07 Jun 2022 08:00:36 +0000 Date: Tue, 7 Jun 2022 10:00:35 +0200 To: gdb-patches@sourceware.org Subject: [committed][gdb] Allow frv::fr300 in selftests Message-ID: <20220607080033.GA11609@delia.home> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) 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: Tom de Vries via Gdb-patches Reply-To: Tom de Vries Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Hi, In skip_arch in gdb/selftest-arch.c we skip architecture fr300 because of PR20946, but the PR has been fixed by commit 0ae60c3ef45 ("Prevent an abort in the FRV disassembler if the target bfd name is unknown.") in Januari 2017. Remove the skipping of frv::fr300. Tested on x86_64-linux. Committed to trunk. Thanks, - Tom [gdb] Allow frv::fr300 in selftests --- gdb/selftest-arch.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gdb/selftest-arch.c b/gdb/selftest-arch.c index 33d7875c120..9e99098783e 100644 --- a/gdb/selftest-arch.c +++ b/gdb/selftest-arch.c @@ -28,12 +28,6 @@ namespace selftests { static bool skip_arch (const char *arch) { - if (strcmp ("fr300", arch) == 0) - { - /* PR 20946 */ - return true; - } - if (strcmp ("powerpc:EC603e", arch) == 0 || strcmp ("powerpc:e500mc", arch) == 0 || strcmp ("powerpc:e500mc64", arch) == 0