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 5028B3858404 for ; Mon, 27 Mar 2023 11:59:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 5028B3858404 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 86FAB1FDBE for ; Mon, 27 Mar 2023 11:58:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1679918339; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=yPtO09zYtGQ6/FTtOBb4rsK5UQlqnncr029uxx67r8M=; b=UUOGBYzqVBtmn+LFtlVXf4A+cjKcLQboUTB0vC0IFmmNsw9okyIr36GRAZEeSyCtqLbZUj rgcghPodK/VuwanAyMkT0OV4jRrjGZu94FjXUngNkLqm0G2X4KFSeEgSvRkJAPSYmYDv1o NYIKsf1GjtlTJF/s55UmPPV7AkNXTRY= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1679918339; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=yPtO09zYtGQ6/FTtOBb4rsK5UQlqnncr029uxx67r8M=; b=ijD6J7V6S+vKMoTqleQDNMd8LJeyMwdXTNJC4Yh98KzTo60rKYUD5IToIk2IzeV84rupuc HENNOxZ8WLhhHbAw== 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 749B4138ED for ; Mon, 27 Mar 2023 11:58:59 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id AC9lGwOFIWTCOgAAMHmgww (envelope-from ) for ; Mon, 27 Mar 2023 11:58:59 +0000 From: Tom de Vries To: gdb-patches@sourceware.org Subject: [pushed 01/10] [gdb/testsuite] Add missing include_file in gdb.dwarf/*.exp Date: Mon, 27 Mar 2023 13:58:49 +0200 Message-Id: <20230327115858.5950-2-tdevries@suse.de> X-Mailer: git-send-email 2.35.3 In-Reply-To: <20230327115858.5950-1-tdevries@suse.de> References: <20230327115858.5950-1-tdevries@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.5 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: --- gdb/testsuite/gdb.dwarf2/dw4-sig-types.exp | 2 ++ gdb/testsuite/gdb.dwarf2/fission-mix.exp | 2 ++ gdb/testsuite/gdb.dwarf2/locexpr-data-member-location.exp | 1 + 3 files changed, 5 insertions(+) diff --git a/gdb/testsuite/gdb.dwarf2/dw4-sig-types.exp b/gdb/testsuite/gdb.dwarf2/dw4-sig-types.exp index 06ce4906f07..c08179fe5e9 100644 --- a/gdb/testsuite/gdb.dwarf2/dw4-sig-types.exp +++ b/gdb/testsuite/gdb.dwarf2/dw4-sig-types.exp @@ -17,6 +17,8 @@ standard_testfile .cc -b.cc +include_file dw4-sig-types.h + # This test is intended for targets which support DWARF-4. # Since we pass an explicit -gdwarf-4 -fdebug-types-section to the compiler, # we let that be the test of whether the target supports it. diff --git a/gdb/testsuite/gdb.dwarf2/fission-mix.exp b/gdb/testsuite/gdb.dwarf2/fission-mix.exp index a396747714d..1e78de6990e 100644 --- a/gdb/testsuite/gdb.dwarf2/fission-mix.exp +++ b/gdb/testsuite/gdb.dwarf2/fission-mix.exp @@ -19,6 +19,8 @@ load_lib dwarf.exp require dwarf2_support standard_testfile .c -2.c +include_file fission-mix.h + set objfile [standard_output_file ${testfile}.o] set objfile2 [standard_output_file ${testfile}2.o] diff --git a/gdb/testsuite/gdb.dwarf2/locexpr-data-member-location.exp b/gdb/testsuite/gdb.dwarf2/locexpr-data-member-location.exp index a5b301e26fb..5bdc3e49b1c 100644 --- a/gdb/testsuite/gdb.dwarf2/locexpr-data-member-location.exp +++ b/gdb/testsuite/gdb.dwarf2/locexpr-data-member-location.exp @@ -67,6 +67,7 @@ set lib_basename ${::gdb_test_file_name}-lib # which will be ${srcfile3} after the execution of standard_testfile. standard_testfile $main_basename.c $lib_basename.c $lib_basename.S +include_file locexpr-data-member-location.h set libsrc "${::srcdir}/${::subdir}/${::srcfile2}" set lib_so [standard_output_file ${lib_basename}.so] -- 2.35.3