public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix regression in gdb.fortran/array-slices-bad.exp
@ 2023-09-08 22:51 Abdul Basit Ijaz
  2023-09-11  9:52 ` Andrew Burgess
  0 siblings, 1 reply; 3+ messages in thread
From: Abdul Basit Ijaz @ 2023-09-08 22:51 UTC (permalink / raw)
  To: gdb-patches; +Cc: abdul.b.ijaz, tom, kevinb

From: "Ijaz, Abdul B" <abdul.b.ijaz@intel.com>

Got a regression email due to merge of commit in CI config
tcwg_gdb_check/master-aarch64 :
https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=41439185cd0075bbb1aedf9665685dba0827cfec

Begining of test "gdb.fortran/array-slices-bad.exp" was updated in above
commit to start the test from running to line with tag "First Breakpoint"
instead of "fortran_runto_main".  Reason of the regression is shared
libraries are still loaded after hitting the breakpoint as "nosharedlibrary"
is already called before hitting the breakpoint.

So now after this change test is updated accordingly to disable and unload
shared libraries symbols after hitting the first breakpoint.

Regression email shows following fails:

Running gdb:gdb.fortran/array-slices-bad.exp ...
FAIL: gdb.fortran/array-slices-bad.exp: print array (0,:)
FAIL: gdb.fortran/array-slices-bad.exp: print array (0:,:)
FAIL: gdb.fortran/array-slices-bad.exp: print array (10:1:1,:)
FAIL: gdb.fortran/array-slices-bad.exp: print array (11,:)
FAIL: gdb.fortran/array-slices-bad.exp: print array (1:10:-1,:)
FAIL: gdb.fortran/array-slices-bad.exp: print array (:,0)
FAIL: gdb.fortran/array-slices-bad.exp: print array (:,0:) ... and 7 more entries

After the change now all tests should pass again.  Here are the results
on Ubuntu22 and gfortran-11-4-0:

(gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (0:,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:11,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,0:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,:11)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (0,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (11,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,0)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,11)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (0:,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:11,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,0:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,:11)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (0,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (11,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,0)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,11)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (0:,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (:11,:)
(gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (:,:11)
..

Thanks & Best Regards
Abdul Basit

Ijaz, Abdul B (1):
  testsuite, fortran: Fix regression due to fix for ifort's 'start'
    behavior

 gdb/testsuite/gdb.fortran/array-slices-bad.exp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

-- 
2.34.1

Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de <http://www.intel.de>
Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva  
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/1] Fix regression in gdb.fortran/array-slices-bad.exp
  2023-09-08 22:51 [PATCH 0/1] Fix regression in gdb.fortran/array-slices-bad.exp Abdul Basit Ijaz
@ 2023-09-11  9:52 ` Andrew Burgess
  2023-09-11  9:59   ` Ijaz, Abdul B
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Burgess @ 2023-09-11  9:52 UTC (permalink / raw)
  To: Abdul Basit Ijaz via Gdb-patches, gdb-patches; +Cc: abdul.b.ijaz, tom


This email is 0/1, but I don't see a 1/1 with an actual patch anywhere.
Did it fail to send maybe?

Thanks,
Andrew


Abdul Basit Ijaz via Gdb-patches <gdb-patches@sourceware.org> writes:

> From: "Ijaz, Abdul B" <abdul.b.ijaz@intel.com>
>
> Got a regression email due to merge of commit in CI config
> tcwg_gdb_check/master-aarch64 :
> https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=41439185cd0075bbb1aedf9665685dba0827cfec
>
> Begining of test "gdb.fortran/array-slices-bad.exp" was updated in above
> commit to start the test from running to line with tag "First Breakpoint"
> instead of "fortran_runto_main".  Reason of the regression is shared
> libraries are still loaded after hitting the breakpoint as "nosharedlibrary"
> is already called before hitting the breakpoint.
>
> So now after this change test is updated accordingly to disable and unload
> shared libraries symbols after hitting the first breakpoint.
>
> Regression email shows following fails:
>
> Running gdb:gdb.fortran/array-slices-bad.exp ...
> FAIL: gdb.fortran/array-slices-bad.exp: print array (0,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (0:,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (10:1:1,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (11,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (1:10:-1,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (:,0)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (:,0:) ... and 7 more entries
>
> After the change now all tests should pass again.  Here are the results
> on Ubuntu22 and gfortran-11-4-0:
>
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (0:,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,0:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,:11)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (0,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,0)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,11)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (0:,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,0:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,:11)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (0,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,0)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,11)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (0:,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (:11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (:,:11)
> ..
>
> Thanks & Best Regards
> Abdul Basit
>
> Ijaz, Abdul B (1):
>   testsuite, fortran: Fix regression due to fix for ifort's 'start'
>     behavior
>
>  gdb/testsuite/gdb.fortran/array-slices-bad.exp | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> -- 
> 2.34.1
>
> Intel Deutschland GmbH
> Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
> Tel: +49 89 99 8853-0, www.intel.de <http://www.intel.de>
> Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva  
> Chairperson of the Supervisory Board: Nicole Lau
> Registered Office: Munich
> Commercial Register: Amtsgericht Muenchen HRB 186928


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH 0/1] Fix regression in gdb.fortran/array-slices-bad.exp
  2023-09-11  9:52 ` Andrew Burgess
@ 2023-09-11  9:59   ` Ijaz, Abdul B
  0 siblings, 0 replies; 3+ messages in thread
From: Ijaz, Abdul B @ 2023-09-11  9:59 UTC (permalink / raw)
  To: Andrew Burgess; +Cc: gdb-patches

Hi Andrew,

Yes It was failed while sending and here it was sent later today: https://sourceware.org/pipermail/gdb-patches/2023-September/202312.html

Thanks & Best Regards
Abdul Basit

-----Original Message-----
From: Andrew Burgess <aburgess@redhat.com> 
Sent: Monday, September 11, 2023 11:53 AM
To: Abdul Basit Ijaz via Gdb-patches <gdb-patches@sourceware.org>; gdb-patches@sourceware.org
Cc: Ijaz, Abdul B <abdul.b.ijaz@intel.com>; tom@tromey.com
Subject: Re: [PATCH 0/1] Fix regression in gdb.fortran/array-slices-bad.exp


This email is 0/1, but I don't see a 1/1 with an actual patch anywhere.
Did it fail to send maybe?

Thanks,
Andrew


Abdul Basit Ijaz via Gdb-patches <gdb-patches@sourceware.org> writes:

> From: "Ijaz, Abdul B" <abdul.b.ijaz@intel.com>
>
> Got a regression email due to merge of commit in CI config
> tcwg_gdb_check/master-aarch64 :
> https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=41439185
> cd0075bbb1aedf9665685dba0827cfec
>
> Begining of test "gdb.fortran/array-slices-bad.exp" was updated in 
> above commit to start the test from running to line with tag "First Breakpoint"
> instead of "fortran_runto_main".  Reason of the regression is shared 
> libraries are still loaded after hitting the breakpoint as "nosharedlibrary"
> is already called before hitting the breakpoint.
>
> So now after this change test is updated accordingly to disable and 
> unload shared libraries symbols after hitting the first breakpoint.
>
> Regression email shows following fails:
>
> Running gdb:gdb.fortran/array-slices-bad.exp ...
> FAIL: gdb.fortran/array-slices-bad.exp: print array (0,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (0:,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (10:1:1,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (11,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (1:10:-1,:)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (:,0)
> FAIL: gdb.fortran/array-slices-bad.exp: print array (:,0:) ... and 7 
> more entries
>
> After the change now all tests should pass again.  Here are the 
> results on Ubuntu22 and gfortran-11-4-0:
>
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (0:,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,0:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,:11)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (0,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,0)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print array (:,11)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (0:,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,0:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,:11)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (0,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,0)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print pointer2d (:,11)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (0:,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (:11,:)
> (gdb) PASS: gdb.fortran/array-slices-bad.exp: print other (:,:11) ..
>
> Thanks & Best Regards
> Abdul Basit
>
> Ijaz, Abdul B (1):
>   testsuite, fortran: Fix regression due to fix for ifort's 'start'
>     behavior
>
>  gdb/testsuite/gdb.fortran/array-slices-bad.exp | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> --
> 2.34.1
>
> Intel Deutschland GmbH
> Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
> Tel: +49 89 99 8853-0, www.intel.de <http://www.intel.de> Managing 
> Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva 
> Chairperson of the Supervisory Board: Nicole Lau Registered Office: 
> Munich Commercial Register: Amtsgericht Muenchen HRB 186928

Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de <http://www.intel.de>
Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva  
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-09-11  9:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-08 22:51 [PATCH 0/1] Fix regression in gdb.fortran/array-slices-bad.exp Abdul Basit Ijaz
2023-09-11  9:52 ` Andrew Burgess
2023-09-11  9:59   ` Ijaz, Abdul B

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).