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 C65583856DF8 for ; Mon, 24 Oct 2022 06:37:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C65583856DF8 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 D73281F9D6 for ; Mon, 24 Oct 2022 06:37:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1666593439; 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=P/WB7A3iCtRZTFf9l7NqrDkj+5JkYpo/nxc/DxRdPT8=; b=sXqolfcv5jzPnJrT3AUYSrXsBYIXruP+lHLDF8NHxsrhXbL48uyQHLaHEUEPWPh9qJwtCx 71zd4vWxxDlBPW0b4S/OLxBA+2sk2P7zpecu1saus0aL0Du9WgHQ210dVld4E0UcQB2KIz siD0D5UwCN6hAI0Xq4VKZqCPIS0/cgM= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1666593439; 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=P/WB7A3iCtRZTFf9l7NqrDkj+5JkYpo/nxc/DxRdPT8=; b=+tcNe4Jq+tJ37c6Zgvhuv7SZR5oQh3XJicVfSEdGTXvIY/UDEORsdZ88mkpFStfU9h+PpU 3Y/qG/8qzfsq/4CQ== 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 C274A13357 for ; Mon, 24 Oct 2022 06:37:19 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id tsgmLp8yVmOgFgAAMHmgww (envelope-from ) for ; Mon, 24 Oct 2022 06:37:19 +0000 From: Tom de Vries To: gdb-patches@sourceware.org Subject: [pushed] [gdb/testsuite] Add skip_python_tests in gdb.python/tui-window-names.exp Date: Mon, 24 Oct 2022 08:37:19 +0200 Message-Id: <20221024063719.17985-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: I did a gdb build without python support, and during testing ran into FAILs in test-case gdb.python/tui-window-names.exp. Fix this by adding the missing skip_python_test. Tested on x86_64-linux. --- gdb/testsuite/gdb.python/tui-window-names.exp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gdb/testsuite/gdb.python/tui-window-names.exp b/gdb/testsuite/gdb.python/tui-window-names.exp index 8aaf3b42229..ff7dab5bd15 100644 --- a/gdb/testsuite/gdb.python/tui-window-names.exp +++ b/gdb/testsuite/gdb.python/tui-window-names.exp @@ -26,6 +26,11 @@ if {[skip_tui_tests]} { return } +if { [skip_python_tests] } { + untested "skipping Python tests" + return +} + # Define a function we can use as a window constructor. If this ever # gets called we'll throw an error, but that's OK, this test doesn't # actually try to create any windows. base-commit: 05962dc48c3c43cba106f0e2da492c1352489936 -- 2.35.3