This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFC] Stabs parsing regression from GDB 6.6 to GDB 6.6.90


Daniel Jacobowitz wrote:

There is already a gdb.stabs directory.

... and all this time, it wasn't running on Cygwin, although the official compiler uses stabs.

This patch fixes it.

This is what I get from running weird.exp

# of expected passes            190
# of expected failures          7

This is what I get from running exclfwd.exp

# of expected passes            1
# of known failures             2

Both with and without the read_huge_number patch.

weird.def seems like a good place to add a new testcase.

OK?

Cheers,
Pedro Alves

2007-09-23  Pedro Alves  <pedro_alves@portugalmail.pt>

	* configure.ac: Do gdb.stabs tests by default on Cygwin and MinGW
	targets.
	* configure: Regenerate.

---
 gdb/testsuite/configure    |    2 ++
 gdb/testsuite/configure.ac |    2 ++
 2 files changed, 4 insertions(+)

Index: src/gdb/testsuite/configure
===================================================================
--- src.orig/gdb/testsuite/configure	2007-03-31 18:35:56.000000000 +0100
+++ src/gdb/testsuite/configure	2007-09-23 12:31:32.000000000 +0100
@@ -1457,6 +1457,8 @@ case $target in
  | *-sun-*        \
  | hppa*-*-*      \
  | *-*-elf*       \
+ | *-pc-cygwin*   \
+ | *-pc-mingw*    \
  )
     with_stabs=yes ;;
  *)
Index: src/gdb/testsuite/configure.ac
===================================================================
--- src.orig/gdb/testsuite/configure.ac	2007-09-22 17:09:56.000000000 +0100
+++ src/gdb/testsuite/configure.ac	2007-09-23 12:29:14.000000000 +0100
@@ -46,6 +46,8 @@ case $target in
  | *-sun-*        \
  | hppa*-*-*      \
  | *-*-elf*       \
+ | *-pc-cygwin*   \
+ | *-pc-mingw*    \
  )
     with_stabs=yes ;;
  *)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]