Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* mn10300's simulator returns exit status
@ 2004-06-03 11:42 Alexandre Oliva
  2004-06-03 18:19 ` Michael Snyder
  0 siblings, 1 reply; 4+ messages in thread
From: Alexandre Oliva @ 2004-06-03 11:42 UTC (permalink / raw)
  To: Rob Savoye; +Cc: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 205 bytes --]

This patch enables dejagnu tests to take advantage of the fact that
the mn10300 simulator has long been able to pass the exit status of
the program it runs up to its caller.  Ok to install in Sourceware?


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dejagnu-mn10300-sim-no-wrapper.patch --]
[-- Type: text/x-patch, Size: 1139 bytes --]

Index: dejagnu/ChangeLog
from  Alexandre Oliva  <aoliva@redhat.com>

	* baseboards/mn10300-sim.exp: Set needs_status_wrapper and
	noresults to zero.

Index: dejagnu/baseboards/mn10300-sim.exp
===================================================================
RCS file: /cvs/src/src/dejagnu/baseboards/mn10300-sim.exp,v
retrieving revision 1.2
diff -u -p -r1.2 mn10300-sim.exp
--- dejagnu/baseboards/mn10300-sim.exp 21 Apr 2002 08:46:47 -0000 1.2
+++ dejagnu/baseboards/mn10300-sim.exp 3 Jun 2004 11:38:33 -0000
@@ -27,13 +27,13 @@ set_board_info ldflags  "[libgloss_link_
 set_board_info ldscript "-Tsim.ld"
 
 # The simulator doesn't return exit statuses and we need to indicate this.
-set_board_info needs_status_wrapper  1
+set_board_info needs_status_wrapper  0
 
 # We can't pass args to the simulator or get exit status back from the
 # simulator, nor does the simulator support real signals.
 set_board_info noargs  1
 set_board_info gdb,nosignals  1
-set_board_info gdb,noresults  1
+set_board_info gdb,noresults  0
 set_board_info gdb,noinferiorio  1
 
 # Used by a few gcc.c-torture testcases to delimit how large the stack can

[-- Attachment #3: Type: text/plain, Size: 188 bytes --]


-- 
Alexandre Oliva             http://www.ic.unicamp.br/~oliva/
Red Hat Compiler Engineer   aoliva@{redhat.com, gcc.gnu.org}
Free Software Evangelist  oliva@{lsd.ic.unicamp.br, gnu.org}

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

* Re: mn10300's simulator returns exit status
  2004-06-03 11:42 mn10300's simulator returns exit status Alexandre Oliva
@ 2004-06-03 18:19 ` Michael Snyder
  2004-06-04  4:04   ` Rob Savoye
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Snyder @ 2004-06-03 18:19 UTC (permalink / raw)
  To: Alexandre Oliva; +Cc: Rob Savoye, gdb-patches

Alexandre Oliva wrote:
> This patch enables dejagnu tests to take advantage of the fact that
> the mn10300 simulator has long been able to pass the exit status of
> the program it runs up to its caller.  Ok to install in Sourceware?

In keeping with the wishes of our lead-testsuite-maintainer-elect,
can you just affirm that you've tested the change and it works?

If so, consider it approved, and thanks.



> ------------------------------------------------------------------------
> 
> Index: dejagnu/ChangeLog
> from  Alexandre Oliva  <aoliva@redhat.com>
> 
> 	* baseboards/mn10300-sim.exp: Set needs_status_wrapper and
> 	noresults to zero.
> 
> Index: dejagnu/baseboards/mn10300-sim.exp
> ===================================================================
> RCS file: /cvs/src/src/dejagnu/baseboards/mn10300-sim.exp,v
> retrieving revision 1.2
> diff -u -p -r1.2 mn10300-sim.exp
> --- dejagnu/baseboards/mn10300-sim.exp 21 Apr 2002 08:46:47 -0000 1.2
> +++ dejagnu/baseboards/mn10300-sim.exp 3 Jun 2004 11:38:33 -0000
> @@ -27,13 +27,13 @@ set_board_info ldflags  "[libgloss_link_
>  set_board_info ldscript "-Tsim.ld"
>  
>  # The simulator doesn't return exit statuses and we need to indicate this.
> -set_board_info needs_status_wrapper  1
> +set_board_info needs_status_wrapper  0
>  
>  # We can't pass args to the simulator or get exit status back from the
>  # simulator, nor does the simulator support real signals.
>  set_board_info noargs  1
>  set_board_info gdb,nosignals  1
> -set_board_info gdb,noresults  1
> +set_board_info gdb,noresults  0
>  set_board_info gdb,noinferiorio  1
>  
>  # Used by a few gcc.c-torture testcases to delimit how large the stack can
> 
> 
> ------------------------------------------------------------------------
> 
> 



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

* Re: mn10300's simulator returns exit status
  2004-06-03 18:19 ` Michael Snyder
@ 2004-06-04  4:04   ` Rob Savoye
  2004-06-07 20:09     ` Alexandre Oliva
  0 siblings, 1 reply; 4+ messages in thread
From: Rob Savoye @ 2004-06-04  4:04 UTC (permalink / raw)
  To: Michael Snyder; +Cc: Alexandre Oliva, gdb-patches

On Thu, Jun 03, 2004 at 06:19:31PM +0000, Michael Snyder wrote:

> In keeping with the wishes of our lead-testsuite-maintainer-elect,
> can you just affirm that you've tested the change and it works?
> 
> If so, consider it approved, and thanks.

  Actually, since I don't have a mn10300 tool chain lying around, I'd love to
know the same thing. If it works, the patch looks fine, and I can check it into
the real DejaGnu CVS repository on Savannah.

	- rob -


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

* Re: mn10300's simulator returns exit status
  2004-06-04  4:04   ` Rob Savoye
@ 2004-06-07 20:09     ` Alexandre Oliva
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Oliva @ 2004-06-07 20:09 UTC (permalink / raw)
  To: Rob Savoye; +Cc: Michael Snyder, gdb-patches

On Jun  4, 2004, Rob Savoye <rob@osprey.arc.nasa.gov> wrote:

> On Thu, Jun 03, 2004 at 06:19:31PM +0000, Michael Snyder wrote:
>> In keeping with the wishes of our lead-testsuite-maintainer-elect,
>> can you just affirm that you've tested the change and it works?

I did, yes.

>> If so, consider it approved, and thanks.

> Actually, since I don't have a mn10300 tool chain lying around, I'd
> love to know the same thing. If it works, the patch looks fine, and
> I can check it into the real DejaGnu CVS repository on Savannah.

Please go ahead.

-- 
Alexandre Oliva             http://www.ic.unicamp.br/~oliva/
Red Hat Compiler Engineer   aoliva@{redhat.com, gcc.gnu.org}
Free Software Evangelist  oliva@{lsd.ic.unicamp.br, gnu.org}


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

end of thread, other threads:[~2004-06-07 20:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-03 11:42 mn10300's simulator returns exit status Alexandre Oliva
2004-06-03 18:19 ` Michael Snyder
2004-06-04  4:04   ` Rob Savoye
2004-06-07 20:09     ` Alexandre Oliva

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