From patchwork Tue Feb 18 11:51:41 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shahab Vahedi X-Patchwork-Id: 38198 Received: (qmail 129110 invoked by alias); 18 Feb 2020 11:51:53 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 129051 invoked by uid 89); 18 Feb 2020 11:51:52 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.6 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:3066, our X-HELO: mail-lj1-f196.google.com Received: from mail-lj1-f196.google.com (HELO mail-lj1-f196.google.com) (209.85.208.196) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 18 Feb 2020 11:51:51 +0000 Received: by mail-lj1-f196.google.com with SMTP id r19so22586952ljg.3 for ; Tue, 18 Feb 2020 03:51:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=2TI3vvObRUuE1FJs4aKkdlvooqsDXksLzafGbkom4v8=; b=VEnbPQ5vmre90ZW15DRWa2avAtN3tkEh5oBplK5Sr1BH8OrhUfczMTQJOHfFgb06Do NZZKoO5xXPUctBu8QzXobs9WTa6gbGplae0BZmu0bi0bymKJzEE+ie1IIMcIoaS+NtHn vLNd96y7aWq+3dfQ156M44zET5zYFbL/i1geBTfpz8XLm/JMfje8c2xCK4liOQwtgH+I YTi2HDa4FfpZDK6M6X5cvgvejTStNiEyeIwR+/MXCaLkP+IatTKV1xBaidJsvpko4Pn0 ZcYftHlO13q2+FPrWPNN0350LWABsiVgsc6apBzZ/KNvo8SycxerMrY6c/uwGODjjuTX MIsQ== Return-Path: Received: from atlantis.internal.synopsys.com ([185.213.155.162]) by smtp.gmail.com with ESMTPSA id o19sm2663582lji.54.2020.02.18.03.51.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 18 Feb 2020 03:51:47 -0800 (PST) From: Shahab Vahedi To: gdb-patches@sourceware.org Cc: Shahab Vahedi , Shahab Vahedi , Tom Tromey , Francois Bedard Subject: [PATCH v2] gdb/testsuite: Regenerate the testglue if it is not in path Date: Tue, 18 Feb 2020 12:51:41 +0100 Message-Id: <20200218115141.5007-1-shahab.vahedi@gmail.com> In-Reply-To: <20200211133710.6120-1-shahab.vahedi@gmail.com> References: <20200211133710.6120-1-shahab.vahedi@gmail.com> MIME-Version: 1.0 From: Shahab Vahedi For running the DejaGnu tests, some esoteric configurations may require a testglue. This, for instance, is true about testing ARC targets which uses its own DejaGnu board and a simulator which does not support returning the pass or fail through the exit code. Therefore, for those tests that use "gdb_compile" a "gdb_tg.o" file is compiled and linked to the final executable. There are tests that invoke "gdb_compile" from different directories. Let's take a look at an example test: gdb.base/fullname.exp. The purpose of this test is to build the executable from different directories (absolute vs. relative vs. other) and then check if gdb can handle setting breakpoints accordingly. When "gdb_compile" generates the "gdb_tg.o", it does not do it again for the same test. Although this might seem efficient, it can lead to problems when changing directories before the next compile: gdb compile failed, arc-elf32-gcc: error: gdb_tg.o: No such file or directory This patch checks if the wrapper file ("gdb_tg.o") is still in reach and if it is not, it will stimulate the generation of the wrapper again. It is worth mentioning that GCC's DejaGnu tests handle these scenarios as well and they seem to be more efficient in doing so by saving the library paths and manipulating them if necessary [1]. However, for GDB tests, that require less compilations, I think the proposed solution should be fine compared to a more full fledged solution from GCC. The glue file in our case is only 2 KiB. Last but not least, I ran the x86_64 tests on an x86_64 host and found no regression. [1] Avid coders may look for "set_ld_library_path_env_vars" in gcc/testsuite/lib/target-libpath.exp. gdb/testsuite/ChangeLog: * lib/gdb.exp (gdb_wrapper_init): Reset "gdb_wrapper_initialized" to 0 if "wrapper_file" does not exist. --- gdb/testsuite/lib/gdb.exp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index d5e22957039..8f55c4fcb2d 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -3565,6 +3565,15 @@ proc gdb_wrapper_init { args } { global gdb_wrapper_flags global gdb_wrapper_target + # if the wrapper is initialized but the wrapper file cannot be + # found anymore, the wrapper file must be built again. + if { $gdb_wrapper_initialized == 1 && \ + [info exists gdb_wrapper_file] && \ + ![file exists $gdb_wrapper_file] } { + verbose "reinitializing the wrapper" + set gdb_wrapper_initialized 0 + } + if { $gdb_wrapper_initialized == 1 } { return; } if {[target_info exists needs_status_wrapper] && \ @@ -3812,7 +3821,7 @@ proc gdb_compile {source dest type options} { verbose "options are $options" verbose "source is $source $dest $type $options" - if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init } + gdb_wrapper_init if {[target_info exists needs_status_wrapper] && \ [target_info needs_status_wrapper] != "0" && \