Re: Problem with cppunit: Segmentation Fault

2007-10-19 Thread Corinna Vinschen
On Oct 19 11:56, Dave Korn wrote:
 On 19 October 2007 11:05, Heiko Selber wrote:
 
 
  
  So I guess the package is indeed broken and merits a bug report. Will the
  package maintainer pick it up from this list? 
  
  The version of cppunit included in cygwin (1.9.14-1) is a bit old anyway.
  Plus, it was apparently only released as a development snapshot on sf.net. 
 
   It's currently undergoing a change of maintainership, having been orphaned
 for some time previously.  See the thread [ITA] cppunit 1.10.2 - A C++ unit
 testing framework in the cygwin-announce list archives during august this
 year.

Uh oh, I missed that.  Now cppunit is removed from cygwin.com.  But
AFAICS, it doesn't matter, given that it's broken anyway.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



cppunit package removed from Cygwin disto (was Re: Problem with cppunit: Segmentation Fault)

2007-10-19 Thread Corinna Vinschen
On Oct 19 12:05, Heiko Selber wrote:
 Dave Korn wrote:
I wonder if the distro version of cppunit was built with the older version
  of gcc that had problems with strings and dlls, because I got as far as some
  kind of std::string c-tor before it blew up on me.
 
 OK, I just removed cygwin's version of cppunit and built my own like René; it 
 works for me, too.
 
 So I guess the package is indeed broken and merits a bug report. Will the 
 package maintainer pick it up from this list?

Unfortunately the cppunit package has no maintainer anymore for some
time.  I removed the package from the distribution for now.

If anybody is interested in picking up the package and become package
maintainer, please see http://cygwin.com/setup.html.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader  cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



RE: Problem with cppunit: Segmentation Fault

2007-10-19 Thread Dave Korn
On 19 October 2007 11:05, Heiko Selber wrote:


 
 So I guess the package is indeed broken and merits a bug report. Will the
 package maintainer pick it up from this list? 
 
 The version of cppunit included in cygwin (1.9.14-1) is a bit old anyway.
 Plus, it was apparently only released as a development snapshot on sf.net. 

  It's currently undergoing a change of maintainership, having been orphaned
for some time previously.  See the thread [ITA] cppunit 1.10.2 - A C++ unit
testing framework in the cygwin-announce list archives during august this
year.


cheers,
  DaveK
-- 
Can't think of a witty .sigline today


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



RE: Problem with cppunit: Segmentation Fault

2007-10-19 Thread Heiko Selber
Dave Korn wrote:

 On 18 October 2007 20:10, René Berber wrote:
 
  Heiko Selber wrote:
  
  I have a problem with cppunit and cygwin: Whenever I try to run a cppunit
  test, all I get is a core dump.
[...]
  Can't reproduce the problem, look:
[...]
  I'm using cppunit 1.12.0 (latest release, it builds out of the box), did not
  test with the version distributed as Cygwin package.
 
   I did and it reproduces.
 
   I wonder if the distro version of cppunit was built with the older version
 of gcc that had problems with strings and dlls, because I got as far as some
 kind of std::string c-tor before it blew up on me.

OK, I just removed cygwin's version of cppunit and built my own like René; it 
works for me, too.

So I guess the package is indeed broken and merits a bug report. Will the 
package maintainer pick it up from this list?

The version of cppunit included in cygwin (1.9.14-1) is a bit old anyway. Plus, 
it was apparently only released as a development snapshot on sf.net.

Thanks for your help,

Heiko

-- 

I condem'n the abuse of apostrophe's.


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: Problem with cppunit: Segmentation Fault

2007-10-18 Thread René Berber
Heiko Selber wrote:

 I have a problem with cppunit and cygwin: Whenever I try to run a cppunit
 test, all I get is a core dump.
 
 Any help with this problem is greatly appreciated.
 
 For example, the cppunit home page 
 http://cppunit.sourceforge.net/cppunit-wiki/FrontPage points to a very small
 cppunit example at http://pantras.free.fr/articles/helloworld.html .
 
 I can compile and run it on Linux (e.g. SuSE 10): $ g++ Hello.cpp  -lcppunit
 -ldl $ ./a.out Test::testHelloWorldHello, world! : OK $
 
 When I try the same under cygwin, it compiles apparently well, but calling
 ./a.exe produces Segmentation fault (core dumped). The dump
[snip]

Can't reproduce the problem, look:

$ g++ Hello.cpp  -lcppunit
Info: resolving vtable for CppUnit::TestSuiteBuilderContextBaseby linking to
__imp___ZTVN7CppUnit27TestSuiteBuilderContextBaseE (auto-import)

$ ./a.exe
Test::testHelloWorldHello, world!
 : OK

I'm using cppunit 1.12.0 (latest release, it builds out of the box), did not
test with the version distributed as Cygwin package.
-- 
René Berber


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



RE: Problem with cppunit: Segmentation Fault

2007-10-18 Thread Dave Korn
On 18 October 2007 20:10, René Berber wrote:

 Heiko Selber wrote:
 
 I have a problem with cppunit and cygwin: Whenever I try to run a cppunit
 test, all I get is a core dump.

 For example, the cppunit home page
 http://cppunit.sourceforge.net/cppunit-wiki/FrontPage points to a very
 small cppunit example at http://pantras.free.fr/articles/helloworld.html .

 When I try the same under cygwin, it compiles apparently well, but calling
 ./a.exe produces Segmentation fault (core dumped). The dump [snip]
 
 Can't reproduce the problem, look:
 
 $ g++ Hello.cpp  -lcppunit
 Info: resolving vtable for CppUnit::TestSuiteBuilderContextBaseby linking to
 __imp___ZTVN7CppUnit27TestSuiteBuilderContextBaseE (auto-import)
 
 $ ./a.exe
 Test::testHelloWorldHello, world!
  : OK
 
 I'm using cppunit 1.12.0 (latest release, it builds out of the box), did not
 test with the version distributed as Cygwin package.

  I did and it reproduces.

  I wonder if the distro version of cppunit was built with the older version
of gcc that had problems with strings and dlls, because I got as far as some
kind of std::string c-tor before it blew up on me.


cheers,
  DaveK
-- 
Can't think of a witty .sigline today


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/