public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: "Strasuns, Mihails" <mihails.strasuns@intel.com>
To: "gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: RE: [PATCH v3 1/9] [gdb/testsuite] allow more registers in reader test
Date: Tue, 14 Apr 2020 10:08:43 +0000	[thread overview]
Message-ID: <MWHPR11MB0048D4E2C9B3FBA1324386DD95DA0@MWHPR11MB0048.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20200331171356.26126-1-mihails.strasuns@intel.com>

Ping for the series 😉

> -----Original Message-----
> From: Mihails Strasuns <mihails.strasuns@intel.com>
> Sent: Tuesday, March 31, 2020 7:14 PM
> To: gdb-patches@sourceware.org
> Cc: Strasuns, Mihails <mihails.strasuns@intel.com>
> Subject: [PATCH v3 1/9] [gdb/testsuite] allow more registers in reader test
> 
> Fixes jit-reader test failures on systems that have more registers than
> expected by the current condition.
> 
> On Intel i9-7920X the following extra registers are printed:
> 
> k0             0x0                 0
> k1             0x0                 0
> k2             0x0                 0
> k3             0x0                 0
> k4             0x0                 0
> k5             0x0                 0
> k6             0x0                 0
> k7             0x0                 0
> 
> gdb/testsuite/ChangeLog:
> 
> 2020-02-18  Mihails Strasuns  <mihails.strasuns@intel.com>
> 
> 	* gdb.base/jit-reader.exp: relax register output check
> 
> Signed-off-by: Mihails Strasuns <mihails.strasuns@intel.com>
> Change-Id: I227ab8691b2363d626f7100216477ab637f619fa
> ---
>  gdb/testsuite/gdb.base/jit-reader.exp | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)
> 
> diff --git a/gdb/testsuite/gdb.base/jit-reader.exp
> b/gdb/testsuite/gdb.base/jit-reader.exp
> index 7852a5b550..8663f0021d 100644
> --- a/gdb/testsuite/gdb.base/jit-reader.exp
> +++ b/gdb/testsuite/gdb.base/jit-reader.exp
> @@ -66,7 +66,8 @@ proc info_registers_current_frame {sp} {
>      set any "\[^\r\n\]*"
> 
>      set neg_decimal "-?$decimal"
> -    gdb_test "info registers" \
> +
> +    set expected \
>  	[multi_line \
>  	     "rax            $hex +$neg_decimal" \
>  	     "rbx            $hex +$neg_decimal" \
> @@ -93,6 +94,11 @@ proc info_registers_current_frame {sp} {
>  	     "fs             $hex +$neg_decimal" \
>  	     "gs             $hex +$neg_decimal" \
>  	    ]
> +
> +    # There may be more registers.
> +    append expected ".*"
> +
> +    gdb_test "info registers" $expected
>  }
> 
>  proc jit_reader_test {} {
> @@ -170,7 +176,8 @@ proc jit_reader_test {} {
> 
>  		# Since the JIT unwinder only provides RIP/RSP/RBP,
>  		# all other registers should show as "<not saved>".
> -		gdb_test "info registers" \
> +
> +		set expected \
>  		    [multi_line \
>  			 "rax            <not saved>" \
>  			 "rbx            <not saved>" \
> @@ -198,6 +205,11 @@ proc jit_reader_test {} {
>  			 "gs             <not saved>" \
>  			]
> 
> +		# There may be more registers.
> +		append expected ".*"
> +
> +		gdb_test "info registers" $expected
> +
>  		# Make sure that "info frame" doesn't crash.
>  		gdb_test "info frame" "Stack level 1, .*in main.*"
> 
> --
> 2.25.2

Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Gary Kershaw
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928

  parent reply	other threads:[~2020-04-14 10:08 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <166773>
2020-03-31 17:13 ` Mihails Strasuns
2020-03-31 17:13   ` [PATCH v3 2/9] [gdb/testsuite] structured rename of jit test files Mihails Strasuns
2020-04-18  2:35     ` Simon Marchi
2020-03-31 17:13   ` [PATCH v3 3/9] [gdb/testsuite] share jit-protocol.h by all jit tests Mihails Strasuns
2020-04-18  2:38     ` Simon Marchi
2020-03-31 17:13   ` [PATCH v3 4/9] [gdb/testsuite] use args as lib list for jit-elf tests Mihails Strasuns
2020-04-18  2:58     ` Simon Marchi
2020-04-20  7:35       ` Strasuns, Mihails
2020-04-20 13:08         ` Simon Marchi
2020-04-20 13:53           ` Simon Marchi
2020-03-31 17:13   ` [PATCH v3 5/9] [gdb/testsuite] add lib/jit-elf-helpers.exp Mihails Strasuns
2020-03-31 17:13   ` [PATCH v3 6/9] [gdb/testsuite] use -Ttext-segment for jit-elf tests Mihails Strasuns
2020-03-31 17:13   ` [PATCH v3 7/9] [gdb/testsuite] define jit function name via macro Mihails Strasuns
2020-03-31 17:13   ` [PATCH v3 8/9] [gdb/testsuite] add jit-elf-util.h and run jit function Mihails Strasuns
2020-03-31 17:13   ` [PATCH v3 9/9] [gdb/testsuite] handle compilation failures in jit-elf-helpers Mihails Strasuns
2020-04-14 10:08   ` Strasuns, Mihails [this message]
2020-04-18  2:30   ` [PATCH v3 1/9] [gdb/testsuite] allow more registers in reader test Simon Marchi

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=MWHPR11MB0048D4E2C9B3FBA1324386DD95DA0@MWHPR11MB0048.namprd11.prod.outlook.com \
    --to=mihails.strasuns@intel.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).