Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PING 2] [PATCH 0/4] Adapt Fortran testsuite for ifort
@ 2022-07-04 10:29 Kempke, Nils-Christian via Gdb-patches
  2022-07-04 13:54 ` Enze Li via Gdb-patches
  0 siblings, 1 reply; 8+ messages in thread
From: Kempke, Nils-Christian via Gdb-patches @ 2022-07-04 10:29 UTC (permalink / raw)
  To: Kempke, Nils-Christian, gdb-patches

Ping!

Thanks,
Nils

> -----Original Message-----
> From: Gdb-patches <gdb-patches-bounces+nils-
> christian.kempke=intel.com@sourceware.org> On Behalf Of Kempke, Nils-
> Christian via Gdb-patches
> Sent: Monday, June 27, 2022 6:59 AM
> To: gdb-patches@sourceware.org
> Subject: [PING] [PATCH 0/4] Adapt Fortran testsuite for ifort
> 
> Ping!
> 
> Thanks, Nils
> 
> > -----Original Message-----
> > From: Kempke, Nils-Christian <nils-christian.kempke@intel.com>
> > Sent: Friday, June 10, 2022 5:45 PM
> > To: gdb-patches@sourceware.org
> > Cc: Kempke, Nils-Christian <nils-christian.kempke@intel.com>
> > Subject: [PATCH 0/4] Adapt Fortran testsuite for ifort
> >
> > Hi,
> >
> > there were a few places in the testsuite where ifort's behavior was
> > FAILing the tests and where I think this is not the result of an ifort
> > bug but rather of a testsuite not forgiving enough.
> >
> > The attached patches should not change the behavior for any other
> > compiler, and I could not find any regressions with gfortran/ifx (tested
> > with unix, unix/m32, native-gdbserver and native-extended-gdbserver).
> >
> > For ifort this series improves testsuite performance if compared to the
> > current master:
> >
> > master before series:
> >
> >                 === gdb Summary ===
> >
> >   # of expected passes            5771
> >   # of unexpected failures        238
> >   # of unknown successes          1
> >   # of known failures             1
> >   # of untested testcases         1
> >   # of unresolved testcases       3
> >   # of unsupported tests          5
> >   # of duplicate test names       3
> >
> > master after series:
> >
> >                 === gdb Summary ===
> >
> >   # of expected passes            5847
> >   # of unexpected failures        161
> >   # of known failures             1
> >   # of untested testcases         1
> >   # of unresolved testcases       3
> >   # of unsupported tests          5
> >   # of duplicate test names       3
> >
> >
> > Any feedback is appreciated,
> >
> > Cheers,
> > Nils
> >
> > Nils-Christian Kempke (4):
> >   testsuite, fortran: make mixed-lang-stack less compiler dependent
> >   testsuite, fortran: Remove self assignment non-statements
> >   testsuite, fortran: adapt tests for ifort's 'start' behavior
> >   testsuite, fortran: make kfail gfortran specific
> >
> >  gdb/testsuite/gdb.fortran/array-slices-bad.exp    |  5 ++++-
> >  gdb/testsuite/gdb.fortran/function-calls.exp      |  4 +++-
> >  gdb/testsuite/gdb.fortran/library-module-lib.f90  |  2 +-
> >  gdb/testsuite/gdb.fortran/library-module-main.f90 |  2 +-
> >  gdb/testsuite/gdb.fortran/mixed-lang-stack.exp    |  9 ++++++++-
> >  gdb/testsuite/gdb.fortran/module.f90              | 11 ++++++-----
> >  gdb/testsuite/gdb.fortran/vla-type.exp            |  5 +++--
> >  7 files changed, 26 insertions(+), 12 deletions(-)
> >
> > --
> > 2.25.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] 8+ messages in thread
* [PATCH 0/4] Adapt Fortran testsuite for ifort
@ 2022-06-10 15:44 Nils-Christian Kempke via Gdb-patches
  2022-07-04 15:59 ` [PING 2][PATCH " Kempke, Nils-Christian via Gdb-patches
  0 siblings, 1 reply; 8+ messages in thread
From: Nils-Christian Kempke via Gdb-patches @ 2022-06-10 15:44 UTC (permalink / raw)
  To: gdb-patches

Hi,

there were a few places in the testsuite where ifort's behavior was
FAILing the tests and where I think this is not the result of an ifort
bug but rather of a testsuite not forgiving enough.

The attached patches should not change the behavior for any other
compiler, and I could not find any regressions with gfortran/ifx (tested
with unix, unix/m32, native-gdbserver and native-extended-gdbserver).

For ifort this series improves testsuite performance if compared to the
current master:

master before series:

                === gdb Summary ===

  # of expected passes            5771
  # of unexpected failures        238
  # of unknown successes          1
  # of known failures             1
  # of untested testcases         1
  # of unresolved testcases       3
  # of unsupported tests          5
  # of duplicate test names       3

master after series:

                === gdb Summary ===

  # of expected passes            5847
  # of unexpected failures        161
  # of known failures             1
  # of untested testcases         1
  # of unresolved testcases       3
  # of unsupported tests          5
  # of duplicate test names       3


Any feedback is appreciated,

Cheers,
Nils

Nils-Christian Kempke (4):
  testsuite, fortran: make mixed-lang-stack less compiler dependent
  testsuite, fortran: Remove self assignment non-statements
  testsuite, fortran: adapt tests for ifort's 'start' behavior
  testsuite, fortran: make kfail gfortran specific

 gdb/testsuite/gdb.fortran/array-slices-bad.exp    |  5 ++++-
 gdb/testsuite/gdb.fortran/function-calls.exp      |  4 +++-
 gdb/testsuite/gdb.fortran/library-module-lib.f90  |  2 +-
 gdb/testsuite/gdb.fortran/library-module-main.f90 |  2 +-
 gdb/testsuite/gdb.fortran/mixed-lang-stack.exp    |  9 ++++++++-
 gdb/testsuite/gdb.fortran/module.f90              | 11 ++++++-----
 gdb/testsuite/gdb.fortran/vla-type.exp            |  5 +++--
 7 files changed, 26 insertions(+), 12 deletions(-)

-- 
2.25.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] 8+ messages in thread

end of thread, other threads:[~2022-07-05 13:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-04 10:29 [PING 2] [PATCH 0/4] Adapt Fortran testsuite for ifort Kempke, Nils-Christian via Gdb-patches
2022-07-04 13:54 ` Enze Li via Gdb-patches
2022-07-04 14:03   ` Kempke, Nils-Christian via Gdb-patches
2022-07-04 14:43     ` Kempke, Nils-Christian via Gdb-patches
2022-07-04 14:49       ` Bruno Larsen via Gdb-patches
2022-07-04 16:09         ` Kempke, Nils-Christian via Gdb-patches
2022-07-05 13:01           ` Enze Li via Gdb-patches
  -- strict thread matches above, loose matches on Subject: below --
2022-06-10 15:44 Nils-Christian Kempke via Gdb-patches
2022-07-04 15:59 ` [PING 2][PATCH " Kempke, Nils-Christian via Gdb-patches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox