[Libreoffice-bugs] [Bug 114843] Test runner crashes on exit when executing a CppUnit::TestCase

2020-12-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114843 --- Comment #4 from Finch. A --- I found this info very helpful. I have earlier asked a question regarding this. Now its very clear as to what to do. https://www.thatchfinder.com/directory/19676/sunnyvale-concrete-pros/ -- You are

[Libreoffice-bugs] [Bug 114843] Test runner crashes on exit when executing a CppUnit:: TestCase

2018-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114843 --- Comment #3 from Markus Mohrhard --- As mentioned this not a CppUnit bug. The test runner is managing the life cycle of the test cases and therefore you need to make sure that you are not deleting the

[Libreoffice-bugs] [Bug 114843] Test runner crashes on exit when executing a CppUnit:: TestCase

2018-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114843 Xisco FaulĂ­ changed: What|Removed |Added Status|UNCONFIRMED

[Libreoffice-bugs] [Bug 114843] Test runner crashes on exit when executing a CppUnit:: TestCase

2018-01-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114843 --- Comment #1 from Sander --- Hello, I discovered from documentation that the testrunner owns the test case and will always call delete(). The problem can be circumventended by allocating a TestCase with new(); --