From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id F1AE43858C50 for ; Sat, 14 Jan 2023 16:22:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org F1AE43858C50 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-out1.suse.de (Postfix) with ESMTPS id CFD823ED98; Sat, 14 Jan 2023 16:22:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1673713339; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=239PlUuO7lhHfdy5vExHBGUFiGAB67c1DI6rwAuouqw=; b=TV32GRy3HMmVQX/zd2SBof22vamOH3Jcv98KcJBNH7TfuB9ms1/+ilSgSKYUF2ChHTEtmB rn4i4munbYzRfLqpUyqQLuBTKRiVmgqpQ3gpGPDoRMlh9wruPQt6Hvs9MwbE7+Q4Nnd5Al CIM0t3ge+oTC2d+tLPZOUWeZzn0vJoM= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1673713339; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=239PlUuO7lhHfdy5vExHBGUFiGAB67c1DI6rwAuouqw=; b=kgrwa7ENgw0tXyKCl5d017ag3cRMtCNKMi/0jntEXxjyoaOU+iTuwQhnYg7oxNFb90Cxhx Qe4001QaooG5m+Cg== 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 BAE0B138FA; Sat, 14 Jan 2023 16:22:19 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id IVFdLLvWwmMQEAAAMHmgww (envelope-from ); Sat, 14 Jan 2023 16:22:19 +0000 Message-ID: Date: Sat, 14 Jan 2023 17:22:19 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH v2 77/79] Rename to allow_guile_tests Content-Language: en-US To: Tom Tromey , gdb-patches@sourceware.org References: <20230112030052.3306113-1-tom@tromey.com> <20230112030052.3306113-78-tom@tromey.com> From: Tom de Vries In-Reply-To: <20230112030052.3306113-78-tom@tromey.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,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: On 1/12/23 04:00, Tom Tromey wrote: > +gdb_caching_proc allow_guile_tests { > + set output [exec $::GDB --configuration] > + return [expr {[string first "--with-guile" $output] != -1}] > } I'm running into ERRORs here: ... (gdb) PASS: gdb.base/gdb-caching-proc.exp: gnat_runtime_has_debug_info: consistency ERROR: tcl error sourcing /home/vries/gdb_versions/devel/src/gdb/testsuite/gdb.base/gdb-caching-proc.exp. ERROR: This GDB was configured as follows: ... Python Exception : No module named 'gdb' /home/vries/gdb_versions/devel/build/gdb/testsuite/../../gdb/gdb: warning: Could not load the Python gdb module from `/home/vries/gdb_versions/devel/install/share/gdb/p\ ython'. Limited Python support is available from the _gdb module. Suggest passing --data-directory=/path/to/gdb/data-directory. Exception caught while booting Guile. /home/vries/gdb_versions/devel/build/gdb/testsuite/../../gdb/gdb: warning: Could not complete\ Guile gdb module initialization from: /home/vries/gdb_versions/devel/install/share/gdb/guile/gdb/boot.scm. Limited Guile support is available. Suggest passing --data-directory=/path/to/gdb/data-directory. ... Looks like GDB_INTERNALFLAGS are missing, at least the bit which would point to the data-directory. Thanks, - Tom