Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA/Testsuite] help.exp
@ 2002-04-23 16:06 Elena Zannoni
  2002-04-23 16:35 ` Michael Snyder
  2002-04-23 16:39 ` Fernando Nasser
  0 siblings, 2 replies; 11+ messages in thread
From: Elena Zannoni @ 2002-04-23 16:06 UTC (permalink / raw)
  To: gdb-patches


The recent changes to help.exp eliminating the wildcards introduced a few
failures on the powerpc.

How about this to deal with the difference in output for the powerpc
vs. other targets?

Elena


2002-04-23  Elena Zannoni  <ezannoni@redhat.com>

	* gdb.base/help.exp: Change 'help status' to allow for PowerPC
	differences.

Index: help.exp
===================================================================
RCS file: /cvs/uberbaum/gdb/testsuite/gdb.base/help.exp,v
retrieving revision 1.10
diff -u -p -r1.10 help.exp
--- help.exp	29 Mar 2002 01:19:11 -0000	1.10
+++ help.exp	23 Apr 2002 23:04:23 -0000
@@ -535,7 +535,13 @@ gdb_test "help source" "Read commands fr
 # test help stack
 gdb_test "help stack" "Examining the stack\..*\[\r\n\]+When the program being debugged stops, gdb selects the innermost frame\.\[\r\n\]+The commands below can be used to select other frames by number or address\.\[\r\n\]+List of commands:\[\r\n\]+backtrace -- Print backtrace of all stack frames\[\r\n\]+bt -- Print backtrace of all stack frames\[\r\n\]+down -- Select and print stack frame called by this one\[\r\n\]+frame -- Select and print a stack frame\[\r\n\]+return -- Make selected stack frame return to its caller\[\r\n\]+select-frame -- Select a stack frame without printing anything\[\r\n\]+up -- Select and print stack frame that called this one\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help stack"
 # test help status
-gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
+
+if [istarget "powerpc-*-*"] then {
+    gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+info powerpc -- Various POWERPC info specific commands\[\r\n\]+info powerpc altivec -- Display the contents of the AltiVec registers\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
+} else {
+    gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
+}
+
 # test help support
 # FIXME -- Ultrix hangs randomly on this very long output from gdb and
 # continues with its output only if something is sent to gdb.


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

* Re: [RFA/Testsuite] help.exp
  2002-04-23 16:06 [RFA/Testsuite] help.exp Elena Zannoni
@ 2002-04-23 16:35 ` Michael Snyder
  2002-04-23 16:47   ` Fernando Nasser
  2002-04-23 16:39 ` Fernando Nasser
  1 sibling, 1 reply; 11+ messages in thread
From: Michael Snyder @ 2002-04-23 16:35 UTC (permalink / raw)
  To: Elena Zannoni; +Cc: gdb-patches

Elena Zannoni wrote:
> 
> The recent changes to help.exp eliminating the wildcards introduced a few
> failures on the powerpc.

Ooops, didn't mean to do  that.  ;-)

> How about this to deal with the difference in output for the powerpc
> vs. other targets?

OK with me (the author of the breakage).
Or you could just use a parenthesis to make the
powerpc command output optional...

Michael

> 2002-04-23  Elena Zannoni  <ezannoni@redhat.com>
> 
>         * gdb.base/help.exp: Change 'help status' to allow for PowerPC
>         differences.
> 
> Index: help.exp
> ===================================================================
> RCS file: /cvs/uberbaum/gdb/testsuite/gdb.base/help.exp,v
> retrieving revision 1.10
> diff -u -p -r1.10 help.exp
> --- help.exp    29 Mar 2002 01:19:11 -0000      1.10
> +++ help.exp    23 Apr 2002 23:04:23 -0000
> @@ -535,7 +535,13 @@ gdb_test "help source" "Read commands fr
>  # test help stack
>  gdb_test "help stack" "Examining the stack\..*\[\r\n\]+When the program being debugged stops, gdb selects the innermost frame\.\[\r\n\]+The commands below can be used to select other frames by number or address\.\[\r\n\]+List of commands:\[\r\n\]+backtrace -- Print backtrace of all stack frames\[\r\n\]+bt -- Print backtrace of all stack frames\[\r\n\]+down -- Select and print stack frame called by this one\[\r\n\]+frame -- Select and print a stack frame\[\r\n\]+return -- Make selected stack frame return to its caller\[\r\n\]+select-frame -- Select a stack frame without printing anything\[\r\n\]+up -- Select and print stack frame that called this one\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help stack"
>  # test help status
> -gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
> +
> +if [istarget "powerpc-*-*"] then {
> +    gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+info powerpc -- Various POWERPC info specific commands\[\r\n\]+info powerpc altivec -- Display the contents of the AltiVec registers\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
> +} else {
> +    gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
> +}
> +
>  # test help support
>  # FIXME -- Ultrix hangs randomly on this very long output from gdb and
>  # continues with its output only if something is sent to gdb.


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

* Re: [RFA/Testsuite] help.exp
  2002-04-23 16:06 [RFA/Testsuite] help.exp Elena Zannoni
  2002-04-23 16:35 ` Michael Snyder
@ 2002-04-23 16:39 ` Fernando Nasser
  2002-04-23 16:49   ` Elena Zannoni
  1 sibling, 1 reply; 11+ messages in thread
From: Fernando Nasser @ 2002-04-23 16:39 UTC (permalink / raw)
  To: Elena Zannoni; +Cc: gdb-patches

Elena Zannoni wrote:
> 
> The recent changes to help.exp eliminating the wildcards introduced a few
> failures on the powerpc.
> 
> How about this to deal with the difference in output for the powerpc
> vs. other targets?
> 
> Elena
> 
Hi Elena,

I would rather have a '.*' in there instead of the test for a specific
target.

You don't need to resubmit: just add the '.*' and post the final
version.

Regards,
Fernando


> 2002-04-23  Elena Zannoni  <ezannoni@redhat.com>
> 
>         * gdb.base/help.exp: Change 'help status' to allow for PowerPC
>         differences.
> 
> Index: help.exp
> ===================================================================
> RCS file: /cvs/uberbaum/gdb/testsuite/gdb.base/help.exp,v
> retrieving revision 1.10
> diff -u -p -r1.10 help.exp
> --- help.exp    29 Mar 2002 01:19:11 -0000      1.10
> +++ help.exp    23 Apr 2002 23:04:23 -0000
> @@ -535,7 +535,13 @@ gdb_test "help source" "Read commands fr
>  # test help stack
>  gdb_test "help stack" "Examining the stack\..*\[\r\n\]+When the program being debugged stops, gdb selects the innermost frame\.\[\r\n\]+The commands below can be used to select other frames by number or address\.\[\r\n\]+List of commands:\[\r\n\]+backtrace -- Print backtrace of all stack frames\[\r\n\]+bt -- Print backtrace of all stack frames\[\r\n\]+down -- Select and print stack frame called by this one\[\r\n\]+frame -- Select and print a stack frame\[\r\n\]+return -- Make selected stack frame return to its caller\[\r\n\]+select-frame -- Select a stack frame without printing anything\[\r\n\]+up -- Select and print stack frame that called this one\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help stack"
>  # test help status
> -gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
> +
> +if [istarget "powerpc-*-*"] then {
> +    gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+info powerpc -- Various POWERPC info specific commands\[\r\n\]+info powerpc altivec -- Display the contents of the AltiVec registers\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
> +} else {
> +    gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
> +}
> +
>  # test help support
>  # FIXME -- Ultrix hangs randomly on this very long output from gdb and
>  # continues with its output only if something is sent to gdb.

-- 
Fernando Nasser
Red Hat Canada Ltd.                     E-Mail:  fnasser@redhat.com
2323 Yonge Street, Suite #300
Toronto, Ontario   M4P 2C9


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

* Re: [RFA/Testsuite] help.exp
  2002-04-23 16:35 ` Michael Snyder
@ 2002-04-23 16:47   ` Fernando Nasser
  2002-04-23 16:51     ` Elena Zannoni
  0 siblings, 1 reply; 11+ messages in thread
From: Fernando Nasser @ 2002-04-23 16:47 UTC (permalink / raw)
  To: Michael Snyder; +Cc: Elena Zannoni, gdb-patches

Michael Snyder wrote:
> 
> Or you could just use a parenthesis to make the
> powerpc command output optional...
> 

Good idea, more specific than my suggested '.*'.  But we don't
need to be so stringent in this case.  As long as we see the 
generic ones the help is working.  

Unless Elena wants to test if these commands show up for the powerpc
targets help.  In this case, neither my suggestion or yours are 
checking for it. :-(

If that is the case, we will have to go with Elena's original patch.

Fernando

-- 
Fernando Nasser
Red Hat Canada Ltd.                     E-Mail:  fnasser@redhat.com
2323 Yonge Street, Suite #300
Toronto, Ontario   M4P 2C9


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

* Re: [RFA/Testsuite] help.exp
  2002-04-23 16:39 ` Fernando Nasser
@ 2002-04-23 16:49   ` Elena Zannoni
  0 siblings, 0 replies; 11+ messages in thread
From: Elena Zannoni @ 2002-04-23 16:49 UTC (permalink / raw)
  To: Fernando Nasser; +Cc: Elena Zannoni, gdb-patches

Fernando Nasser writes:
 > Elena Zannoni wrote:
 > > 
 > > The recent changes to help.exp eliminating the wildcards introduced a few
 > > failures on the powerpc.
 > > 
 > > How about this to deal with the difference in output for the powerpc
 > > vs. other targets?
 > > 
 > > Elena
 > > 
 > Hi Elena,
 > 
 > I would rather have a '.*' in there instead of the test for a specific
 > target.
 > 

That is the way it was originally. That works fine with the powerpc.

 > You don't need to resubmit: just add the '.*' and post the final
 > version.
 > 

OK.

 > Regards,
 > Fernando
 > 
 > 
 > > 2002-04-23  Elena Zannoni  <ezannoni@redhat.com>
 > > 
 > >         * gdb.base/help.exp: Change 'help status' to allow for PowerPC
 > >         differences.
 > > 
 > > Index: help.exp
 > > ===================================================================
 > > RCS file: /cvs/uberbaum/gdb/testsuite/gdb.base/help.exp,v
 > > retrieving revision 1.10
 > > diff -u -p -r1.10 help.exp
 > > --- help.exp    29 Mar 2002 01:19:11 -0000      1.10
 > > +++ help.exp    23 Apr 2002 23:04:23 -0000
 > > @@ -535,7 +535,13 @@ gdb_test "help source" "Read commands fr
 > >  # test help stack
 > >  gdb_test "help stack" "Examining the stack\..*\[\r\n\]+When the program being debugged stops, gdb selects the innermost frame\.\[\r\n\]+The commands below can be used to select other frames by number or address\.\[\r\n\]+List of commands:\[\r\n\]+backtrace -- Print backtrace of all stack frames\[\r\n\]+bt -- Print backtrace of all stack frames\[\r\n\]+down -- Select and print stack frame called by this one\[\r\n\]+frame -- Select and print a stack frame\[\r\n\]+return -- Make selected stack frame return to its caller\[\r\n\]+select-frame -- Select a stack frame without printing anything\[\r\n\]+up -- Select and print stack frame that called this one\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help stack"
 > >  # test help status
 > > -gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
 > > +
 > > +if [istarget "powerpc-*-*"] then {
 > > +    gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+info powerpc -- Various POWERPC info specific commands\[\r\n\]+info powerpc altivec -- Display the contents of the AltiVec registers\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
 > > +} else {
 > > +    gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
 > > +}
 > > +
 > >  # test help support
 > >  # FIXME -- Ultrix hangs randomly on this very long output from gdb and
 > >  # continues with its output only if something is sent to gdb.
 > 
 > -- 
 > Fernando Nasser
 > Red Hat Canada Ltd.                     E-Mail:  fnasser@redhat.com
 > 2323 Yonge Street, Suite #300
 > Toronto, Ontario   M4P 2C9


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

* Re: [RFA/Testsuite] help.exp
  2002-04-23 16:47   ` Fernando Nasser
@ 2002-04-23 16:51     ` Elena Zannoni
  2002-04-23 17:23       ` Michael Snyder
  0 siblings, 1 reply; 11+ messages in thread
From: Elena Zannoni @ 2002-04-23 16:51 UTC (permalink / raw)
  To: Fernando Nasser; +Cc: Michael Snyder, Elena Zannoni, gdb-patches

Fernando Nasser writes:
 > Michael Snyder wrote:
 > > 
 > > Or you could just use a parenthesis to make the
 > > powerpc command output optional...
 > > 
 > 
 > Good idea, more specific than my suggested '.*'.  But we don't
 > need to be so stringent in this case.  As long as we see the 
 > generic ones the help is working.  
 > 
 > Unless Elena wants to test if these commands show up for the powerpc
 > targets help.  In this case, neither my suggestion or yours are 
 > checking for it. :-(
 > 

Nah, I don't really want to be that specific.

 > If that is the case, we will have to go with Elena's original patch.
 > 
 
But you guys decide, if we got rid of the wildcards do we want them back?

Elena



> Fernando
 > 
 > -- 
 > Fernando Nasser
 > Red Hat Canada Ltd.                     E-Mail:  fnasser@redhat.com
 > 2323 Yonge Street, Suite #300
 > Toronto, Ontario   M4P 2C9


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

* Re: [RFA/Testsuite] help.exp
  2002-04-23 16:51     ` Elena Zannoni
@ 2002-04-23 17:23       ` Michael Snyder
  2002-04-23 20:07         ` Elena Zannoni
  0 siblings, 1 reply; 11+ messages in thread
From: Michael Snyder @ 2002-04-23 17:23 UTC (permalink / raw)
  To: Elena Zannoni; +Cc: Fernando Nasser, gdb-patches

Elena Zannoni wrote:
> 
> Fernando Nasser writes:
>  > Michael Snyder wrote:
>  > >
>  > > Or you could just use a parenthesis to make the
>  > > powerpc command output optional...
>  > >
>  >
>  > Good idea, more specific than my suggested '.*'.  But we don't
>  > need to be so stringent in this case.  As long as we see the
>  > generic ones the help is working.
>  >
>  > Unless Elena wants to test if these commands show up for the powerpc
>  > targets help.  In this case, neither my suggestion or yours are
>  > checking for it. :-(
>  >
> 
> Nah, I don't really want to be that specific.
> 
>  > If that is the case, we will have to go with Elena's original patch.
>  >
> 
> But you guys decide, if we got rid of the wildcards do we want them back?

I was only deleting them where I thought they were unnecessary.
In this case, I was wrong, 'cause I didn't know PPC had its own
variants.  So yes, it would be appropriate to put that one back.

Michael


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

* Re: [RFA/Testsuite] help.exp
  2002-04-23 17:23       ` Michael Snyder
@ 2002-04-23 20:07         ` Elena Zannoni
  0 siblings, 0 replies; 11+ messages in thread
From: Elena Zannoni @ 2002-04-23 20:07 UTC (permalink / raw)
  To: Michael Snyder; +Cc: Elena Zannoni, Fernando Nasser, gdb-patches

Michael Snyder writes:
 > Elena Zannoni wrote:
 > > 
 > > Fernando Nasser writes:
 > >  > Michael Snyder wrote:
 > >  > >
 > >  > > Or you could just use a parenthesis to make the
 > >  > > powerpc command output optional...
 > >  > >
 > >  >
 > >  > Good idea, more specific than my suggested '.*'.  But we don't
 > >  > need to be so stringent in this case.  As long as we see the
 > >  > generic ones the help is working.
 > >  >
 > >  > Unless Elena wants to test if these commands show up for the powerpc
 > >  > targets help.  In this case, neither my suggestion or yours are
 > >  > checking for it. :-(
 > >  >
 > > 
 > > Nah, I don't really want to be that specific.
 > > 
 > >  > If that is the case, we will have to go with Elena's original patch.
 > >  >
 > > 
 > > But you guys decide, if we got rid of the wildcards do we want them back?
 > 
 > I was only deleting them where I thought they were unnecessary.
 > In this case, I was wrong, 'cause I didn't know PPC had its own
 > variants.  So yes, it would be appropriate to put that one back.
 > 
 > Michael

OK, I committed the following:

2002-04-23  Elena Zannoni  <ezannoni@redhat.com>

	* gdb.base/help.exp: Change 'help status' to allow for target
	dependent output differences.

Index: help.exp
===================================================================
RCS file: /cvs/uberbaum/gdb/testsuite/gdb.base/help.exp,v
retrieving revision 1.10
diff -u -p -r1.10 help.exp
--- help.exp	29 Mar 2002 01:19:11 -0000	1.10
+++ help.exp	24 Apr 2002 03:05:07 -0000
@@ -535,7 +535,9 @@ gdb_test "help source" "Read commands fr
 # test help stack
 gdb_test "help stack" "Examining the stack\..*\[\r\n\]+When the program being debugged stops, gdb selects the innermost frame\.\[\r\n\]+The commands below can be used to select other frames by number or address\.\[\r\n\]+List of commands:\[\r\n\]+backtrace -- Print backtrace of all stack frames\[\r\n\]+bt -- Print backtrace of all stack frames\[\r\n\]+down -- Select and print stack frame called by this one\[\r\n\]+frame -- Select and print a stack frame\[\r\n\]+return -- Make selected stack frame return to its caller\[\r\n\]+select-frame -- Select a stack frame without printing anything\[\r\n\]+up -- Select and print stack frame that called this one\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help stack"
 # test help status
-gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
+gdb_test "help status" "Status inquiries\.\[\r\n\]+List of commands:\[\r\n\]+info -- Generic command for showing things about the program being debugged.*\[\r\n\]+show -- Generic command for showing things about the debugger\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help status"
+
 # test help support
 # FIXME -- Ultrix hangs randomly on this very long output from gdb and
 # continues with its output only if something is sent to gdb.


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

* Re: [RFA/Testsuite] help.exp
@ 2002-04-23 21:04 Michael Elizabeth Chastain
  0 siblings, 0 replies; 11+ messages in thread
From: Michael Elizabeth Chastain @ 2002-04-23 21:04 UTC (permalink / raw)
  To: ezannoni; +Cc: fnasser, gdb-patches

Elena Zannoni writes:
> Oops, I committed the wildcard change already. 

My bad, I didn't read to the end of the thread before replying.

Any way that Fernando likes it, I like it.

Michael C


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

* Re: [RFA/Testsuite] help.exp
  2002-04-23 20:55 Michael Elizabeth Chastain
@ 2002-04-23 20:57 ` Elena Zannoni
  0 siblings, 0 replies; 11+ messages in thread
From: Elena Zannoni @ 2002-04-23 20:57 UTC (permalink / raw)
  To: Michael Elizabeth Chastain; +Cc: fnasser, ezannoni, gdb-patches

Michael Elizabeth Chastain writes:
 > It looks good to me.  I prefer the target-sensitive test to a wildcard
 > expression, because the target-sensitive test expresses the success
 > conditions more precisely.
 > 
 > I proofread it, but I did not test it.
 > 
 > I recommend this patch for approval.
 > 
 > Michael C
 > 
 > 2002-04-23  Elena Zannoni  <ezannoni@redhat.com>
 > 
 > 	* gdb.base/help.exp: Change 'help status' to allow for PowerPC
 > 	differences.

Oops, I committed the wildcard change already. 
Ok, I can change it again. Fernando?

Elena


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

* Re: [RFA/Testsuite] help.exp
@ 2002-04-23 20:55 Michael Elizabeth Chastain
  2002-04-23 20:57 ` Elena Zannoni
  0 siblings, 1 reply; 11+ messages in thread
From: Michael Elizabeth Chastain @ 2002-04-23 20:55 UTC (permalink / raw)
  To: ezannoni, gdb-patches

It looks good to me.  I prefer the target-sensitive test to a wildcard
expression, because the target-sensitive test expresses the success
conditions more precisely.

I proofread it, but I did not test it.

I recommend this patch for approval.

Michael C

2002-04-23  Elena Zannoni  <ezannoni@redhat.com>

	* gdb.base/help.exp: Change 'help status' to allow for PowerPC
	differences.


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

end of thread, other threads:[~2002-04-24  4:04 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-04-23 16:06 [RFA/Testsuite] help.exp Elena Zannoni
2002-04-23 16:35 ` Michael Snyder
2002-04-23 16:47   ` Fernando Nasser
2002-04-23 16:51     ` Elena Zannoni
2002-04-23 17:23       ` Michael Snyder
2002-04-23 20:07         ` Elena Zannoni
2002-04-23 16:39 ` Fernando Nasser
2002-04-23 16:49   ` Elena Zannoni
2002-04-23 20:55 Michael Elizabeth Chastain
2002-04-23 20:57 ` Elena Zannoni
2002-04-23 21:04 Michael Elizabeth Chastain

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