public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Bruno Larsen <blarsen@redhat.com>
To: Andrew Burgess <aburgess@redhat.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH 2/6] gdb/testsuite: fix gdb.trace/unavailable-dwarf-piece.exp with Clang
Date: Wed, 16 Nov 2022 15:41:54 +0100	[thread overview]
Message-ID: <00ef5863-fcb6-9a56-2c80-b6a726904a30@redhat.com> (raw)
In-Reply-To: <e79df44660fd3936e699d76f50607bfca6a65495.1668184173.git.aburgess@redhat.com>

On 11/11/2022 17:36, Andrew Burgess via Gdb-patches wrote:
> I noticed that the test gdb.trace/unavailable-dwarf-piece.exp was
> failing when run with Clang.  Or rather, the test was not running as
> the test executable failed to compile.
>
> The problem is that Clang was emitting this warning:
>
>    warning: argument unused during compilation: '-fdiagnostics-color=never' [-Wunused-command-line-argument]
>
> This warning is emitted when compiling the assembler file generated
> by the DWARF assembler.
>
> Most DWARF assembler tests generate the assembler file into a file
> with the '.S' extension.  However, this particular test uses a '.s'
> extension.
>
> Now a .S file will be passed through the preprocessor, while a .s will
> be sent straight to the assembler.  My guess is that Clang doesn't
> support the -fdiagnostics-color=never option for the assembler, but
> does for the preprocessor.
>
> That's a little annoying, but easily worked around.  We don't care if
> our assembler file is passed through the preprocessor, so, in this
> commit, I just change the file extension from .s to .S, and the
> problem is fixed.
>
> Currently, the unavailable-dwarf-piece.exp script names the assembler
> file using standard_output_file, in this commit I've switched to make
> use of standard_testfile, as that seems to be the more common way of
> doing this sort of thing.
>
> With these changes the test now passes with Clang 9.0.1 and 15.0.2,
> and also still passes with gcc.
> ---
>   gdb/testsuite/gdb.trace/unavailable-dwarf-piece.exp | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gdb/testsuite/gdb.trace/unavailable-dwarf-piece.exp b/gdb/testsuite/gdb.trace/unavailable-dwarf-piece.exp
> index f80f8005fcf..13c6f38737c 100644
> --- a/gdb/testsuite/gdb.trace/unavailable-dwarf-piece.exp
> +++ b/gdb/testsuite/gdb.trace/unavailable-dwarf-piece.exp
> @@ -20,9 +20,9 @@ if {![dwarf2_support]} {
>       return 0
>   }
>   
> -standard_testfile .c
> +standard_testfile .c -dbg.S
>   
> -set asm_file [standard_output_file "${testfile}-dbg.s"]
> +set asm_file $srcfile2
>   set opts {}
>   
>   if  { [gdb_compile ${srcdir}/${subdir}/${srcfile} ${binfile}1.o \

I tried running this test with these changes using clang 14.0.5 and 
clang 16.0.0, and both times I got the following output:

builtin_spawn -ignore SIGHUP clang-14 -fdiagnostics-color=never 
-Wno-unknown-warning-option -w -c -g -o 
/home/blarsen/Documents/fsf_build/gdb/testsuite/temp/1163842/is_ilp32_target-1163842.o 
/home/blarsen/Documents/fsf_build/gdb/testsuite/temp/1163842/is_ilp32_target-1163842.c
/home/blarsen/Documents/fsf_build/gdb/testsuite/temp/1163842/is_ilp32_target-1163842.c:2:12: 
error: 'dummy' declared as an array with a negative size
         int dummy[sizeof (int) == 4
                   ^~~~~~~~~~~~~~~~~
1 error generated.


And I get an "unsupported" test. The error message says that the target 
doesn't support trace, but I'm not sure if it isn't related to the 
compilation failure. Do you see anything similar?

-- 
Cheers,
Bruno


  reply	other threads:[~2022-11-16 14:41 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-11 16:36 [PATCH 0/6] The DWARF assembler and Clang Andrew Burgess
2022-11-11 16:36 ` [PATCH 1/6] gdb/testsuite: don't avoid DWARF assembler tests with Clang Andrew Burgess
2022-11-11 16:36 ` [PATCH 2/6] gdb/testsuite: fix gdb.trace/unavailable-dwarf-piece.exp " Andrew Burgess
2022-11-16 14:41   ` Bruno Larsen [this message]
2022-11-17 11:06     ` Andrew Burgess
2022-12-12 17:55   ` Tom Tromey
2022-12-13 15:39     ` Andrew Burgess
2022-11-11 16:36 ` [PATCH 3/6] gdb/testsuite: fix gdb.compile/compile-ops.exp with clang Andrew Burgess
2022-11-16 16:27   ` Tom Tromey
2022-11-11 16:36 ` [PATCH 4/6] gdb/testsuite: add (and use) a new build-id compile option Andrew Burgess
2022-11-11 16:36 ` [PATCH 5/6] gdb/testsuite: fix gdb.debuginfod/fetch_src_and_symbols.exp with Clang Andrew Burgess
2022-11-16 16:29   ` Tom Tromey
2022-11-17 11:38     ` [PATCHv2 0/2] Fix " Andrew Burgess
2022-11-17 11:38       ` [PATCHv2 1/2] gdb/testsuite: rename source file gdb.debuginfod/main.c Andrew Burgess
2022-11-17 11:38       ` [PATCHv2 2/2] gdb/testsuite: fix gdb.debuginfod/fetch_src_and_symbols.exp with Clang Andrew Burgess
2022-11-17 19:29       ` [PATCHv2 0/2] Fix " Tom Tromey
2022-11-11 16:36 ` [PATCH 6/6] gdb/testsuite: rewrite gdb.cp/call-method-register.exp with dwarf assembler Andrew Burgess
2022-11-16 11:59   ` Lancelot SIX
2022-11-16 16:32 ` [PATCH 0/6] The DWARF assembler and Clang Tom Tromey
2022-11-18 11:48   ` Andrew Burgess

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=00ef5863-fcb6-9a56-2c80-b6a726904a30@redhat.com \
    --to=blarsen@redhat.com \
    --cc=aburgess@redhat.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).