* Re: [RFA]: Fix gdb.c++/userdef.exp for HC11
[not found] <3B07B0AC.59C50A0@worldnet.fr>
@ 2001-06-27 22:20 ` Andrew Cagney
2001-06-27 22:43 ` Daniel Berlin
2001-07-09 15:00 ` Fernando Nasser
1 sibling, 1 reply; 4+ messages in thread
From: Andrew Cagney @ 2001-06-27 22:20 UTC (permalink / raw)
To: Stephane Carrez; +Cc: gdb-patches
Anyone?
> Hi!
>
> The test gdb.c++/userdef.exp does not link for HC11 because there is
> no C++ iostream. The patch below avoids to execute the test for m6811 target.
>
> Can you approve it?
>
> Thanks,
> Stephane
>
> 2001-05-20 Stephane Carrez <Stephane.Carrez@worldnet.fr>
>
> * gdb.c++/userdef.exp: This test fails for 68HC11 because C++
> iostream is not available.
>
>
>
> Index: testsuite/gdb.c++/userdef.exp
> ===================================================================
> RCS file: /cvs/src/src/gdb/testsuite/gdb.c++/userdef.exp,v
> retrieving revision 1.3
> diff -u -p -r1.3 userdef.exp
> --- userdef.exp 2001/03/21 20:51:16 1.3
> +++ userdef.exp 2001/05/20 11:40:02
> @@ -1,5 +1,5 @@
> # Tests of overloaded operators resolution.
> -# Copyright 1998, 1999 Free Software Foundation, Inc.
> +# Copyright 1998, 1999, 2001 Free Software Foundation, Inc.
>
> # This program is free software; you can redistribute it and/or modify
> # it under the terms of the GNU General Public License as published by
> @@ -28,6 +28,9 @@ if $tracelevel then {
> }
>
> if { [skip_cplus_tests] } { continue }
> +
> +# The C++ iostream is not available on embedded 68HC11.
> +if [istarget "m6811-*-*"] { continue }
>
> set testfile "userdef"
> set srcfile ${testfile}.cc
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFA]: Fix gdb.c++/userdef.exp for HC11
2001-06-27 22:20 ` [RFA]: Fix gdb.c++/userdef.exp for HC11 Andrew Cagney
@ 2001-06-27 22:43 ` Daniel Berlin
2001-06-28 15:20 ` Stephane Carrez
0 siblings, 1 reply; 4+ messages in thread
From: Daniel Berlin @ 2001-06-27 22:43 UTC (permalink / raw)
To: Andrew Cagney; +Cc: Stephane Carrez, gdb-patches
Andrew Cagney <ac131313@cygnus.com> writes:
I'm curious.
You have a C++ library on 68HC11, but no iostream?
libstdc++-v3 can't do this, I think. Certainly, i don't see an option
to disable the io portions. And since libsupc++ is built as part of
libstdc++-v3, ...
Or is this 2.95?
> Anyone?
>
>
>
>> Hi!
>> The test gdb.c++/userdef.exp does not link for HC11 because there is
>
>> no C++ iostream. The patch below avoids to execute the test for m6811 target.
>> Can you approve it?
>
>> Thanks,
>
>> Stephane
>> 2001-05-20 Stephane Carrez <Stephane.Carrez@worldnet.fr>
>
>> * gdb.c++/userdef.exp: This test fails for 68HC11 because C++
>
>> iostream is not available.
>> Index: testsuite/gdb.c++/userdef.exp
>
>> ===================================================================
>> RCS file: /cvs/src/src/gdb/testsuite/gdb.c++/userdef.exp,v
>> retrieving revision 1.3
>> diff -u -p -r1.3 userdef.exp
>> --- userdef.exp 2001/03/21 20:51:16 1.3
>> +++ userdef.exp 2001/05/20 11:40:02
>> @@ -1,5 +1,5 @@
>> # Tests of overloaded operators resolution.
>> -# Copyright 1998, 1999 Free Software Foundation, Inc.
>> +# Copyright 1998, 1999, 2001 Free Software Foundation, Inc.
>> # This program is free software; you can redistribute it and/or
>> modify
>
>> # it under the terms of the GNU General Public License as published by
>> @@ -28,6 +28,9 @@ if $tracelevel then {
>> }
>> if { [skip_cplus_tests] } { continue }
>
>> +
>> +# The C++ iostream is not available on embedded 68HC11.
>> +if [istarget "m6811-*-*"] { continue }
>> set testfile "userdef"
>
>> set srcfile ${testfile}.cc
>>
>
>
--
"We were in Salino, Utah when we were arrested for not going
through a green light. We pleaded "maybe". I asked the judge
if he knew what time it is, he did, and I said, "No further
questions."
"-Steven Wright
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFA]: Fix gdb.c++/userdef.exp for HC11
2001-06-27 22:43 ` Daniel Berlin
@ 2001-06-28 15:20 ` Stephane Carrez
0 siblings, 0 replies; 4+ messages in thread
From: Stephane Carrez @ 2001-06-28 15:20 UTC (permalink / raw)
To: Daniel Berlin; +Cc: Andrew Cagney, gdb-patches
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1033 bytes --]
Hi!
Daniel Berlin a écrit :
>
> I'm curious.
> You have a C++ library on 68HC11, but no iostream?
>
With 2.95, I'm able to build the iostream and C++ library. But, it is
so large that it will never link (> 80K for a 64K address space).
There is no problem in creating C++ programs that use reasonable classes
(and no exception :-)
> libstdc++-v3 can't do this, I think. Certainly, i don't see an option
> to disable the io portions. And since libsupc++ is built as part of
> libstdc++-v3, ...
I have problems to build libstdc++ on 3.0, although libsupc++ is ok.
>
> Or is this 2.95?
>
Today, yes.
Stephane
-----------------------------------------------------------------------
Home Office
E-mail: stcarrez@worldnet.fr Stephane.Carrez@sun.com
WWW: http://home.worldnet.fr/stcarrez http://www.sun.com
Mail: 17, rue Foucher Lepelletier 6, avenue Gustave Eiffel
92130 Issy Les Moulineaux 78182 Saint Quentin en Yvelines
France
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFA]: Fix gdb.c++/userdef.exp for HC11
[not found] <3B07B0AC.59C50A0@worldnet.fr>
2001-06-27 22:20 ` [RFA]: Fix gdb.c++/userdef.exp for HC11 Andrew Cagney
@ 2001-07-09 15:00 ` Fernando Nasser
1 sibling, 0 replies; 4+ messages in thread
From: Fernando Nasser @ 2001-07-09 15:00 UTC (permalink / raw)
To: Stephane Carrez; +Cc: gdb-patches, Michael Snyder
Stephane Carrez wrote:
>
> Hi!
>
> The test gdb.c++/userdef.exp does not link for HC11 because there is
> no C++ iostream. The patch below avoids to execute the test for m6811 target.
>
> Can you approve it?
>
> Thanks,
> Stephane
>
> 2001-05-20 Stephane Carrez <Stephane.Carrez@worldnet.fr>
>
> * gdb.c++/userdef.exp: This test fails for 68HC11 because C++
> iostream is not available.
>
>
Hi Stephane,
Sorry for the delay.
Here is how you should do this. It will also allow someone to run these tests if a target with this architecture but with more memory is built in the future (as I understood from your last response it is a question of memory size). Also, it will help other folks that may have similar restrictions (i.e., iostream not available).
The code snippets are from a Michael Snyder's patch which added a similar feature for the C stdio.
2000-10-13 Michael Snyder <msnyder@cleaver.cygnus.com>
* lib/gdb.exp (gdb_skip_float_test): New proc. Skip test if
no floating point support.
(gdb_skip_stdio_test): New proc. Skip test if no stdio support.
* gdb.base/call-ar-st.exp: Use above procs to skip tests.
Index: lib/gdb.exp
===================================================================
RCS file: /cvs/cvsfiles/devo/gdb/testsuite/lib/gdb.exp,v
retrieving revision 1.156
diff -c -p -r1.156 gdb.exp
*** gdb.exp 2000/03/14 06:47:51 1.156
--- gdb.exp 2000/10/14 00:25:48
*************** proc gdbtk_analyze_results {results} {
*** 1686,1689 ****
--- 1695,1724 ----
}
}
}
+ }
+
+ # Print a message and return true if a test should be skipped
+ # due to lack of stdio support.
+
+ proc gdb_skip_stdio_test { msg } {
+ if [target_info exists gdb,noinferiorio] {
+ verbose "Skipping test '$msg': no inferior i/o.";
+ return 1;
+ }
+ return 0;
+ }
+
}
You just make one for streamio and then add to the test file the equivalent to:
# Can't do this test without stdio support.
if [gdb_skip_stdio_test "a2run.exp"] {
return
}
Then, you add the following line to the file that describes your board:
set_board_info gdb,noinferiorio 1
Regards,
Fernando
> Index: testsuite/gdb.c++/userdef.exp
> ===================================================================
> RCS file: /cvs/src/src/gdb/testsuite/gdb.c++/userdef.exp,v
> retrieving revision 1.3
> diff -u -p -r1.3 userdef.exp
> --- userdef.exp 2001/03/21 20:51:16 1.3
> +++ userdef.exp 2001/05/20 11:40:02
> @@ -1,5 +1,5 @@
> # Tests of overloaded operators resolution.
> -# Copyright 1998, 1999 Free Software Foundation, Inc.
> +# Copyright 1998, 1999, 2001 Free Software Foundation, Inc.
>
> # This program is free software; you can redistribute it and/or modify
> # it under the terms of the GNU General Public License as published by
> @@ -28,6 +28,9 @@ if $tracelevel then {
> }
>
> if { [skip_cplus_tests] } { continue }
> +
> +# The C++ iostream is not available on embedded 68HC11.
> +if [istarget "m6811-*-*"] { continue }
>
> set testfile "userdef"
> set srcfile ${testfile}.cc
--
Fernando Nasser
Red Hat - Toronto E-Mail: fnasser@redhat.com
2323 Yonge Street, Suite #300
Toronto, Ontario M4P 2C9
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2001-07-09 15:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <3B07B0AC.59C50A0@worldnet.fr>
2001-06-27 22:20 ` [RFA]: Fix gdb.c++/userdef.exp for HC11 Andrew Cagney
2001-06-27 22:43 ` Daniel Berlin
2001-06-28 15:20 ` Stephane Carrez
2001-07-09 15:00 ` Fernando Nasser
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox