https://bugs.kde.org/show_bug.cgi?id=455533
--- Comment #3 from Sigbjorn <sigbjorn.hel...@gmail.com> --- .. after downloading debuginfo, repeating the crash procedure, and using gdb,(konqi seems to disable/or not read .gdb.ini file, will sort out that later),, here seems to be the intersting spots: #7 0x00007fc16bf7faad in CMakeManager::projectClosing (this=0x5646c97164f0, p=<optimized out>) at /usr/src/debug/kdevelop-22.04.2/plugins/cmake/cmakemanager.cpp:660 660 cleanupTestSuites(it->testSuites, it->testSuiteJobs); (gdb) l 655 656 void CMakeManager::projectClosing(IProject* p) 657 { 658 auto it = m_projects.find(p); 659 if (it != m_projects.end()) { 660 cleanupTestSuites(it->testSuites, it->testSuiteJobs); 661 m_projects.erase(it); 662 } 663 } 664 (gdb) down #6 0x00007fc16bf912d4 in cleanupTestSuites(QVector<CTestSuite*> const&, QVector<CTestFindJob*> const&) [clone .isra.0] (testSuites=..., testSuiteJobs=...) at /usr/src/debug/kdevelop-22.04.2/plugins/cmake/cmakemanager.cpp:440 440 delete testSuite; (gdb) list 435 for (auto* testSuiteJob : testSuiteJobs) { 436 testSuiteJob->kill(KJob::Quietly); 437 } 438 for (auto* testSuite : testSuites) { 439 ICore::self()->testController()->removeTestSuite(testSuite); 440 delete testSuite; 441 } 442 } 443 444 void CMakeManager::integrateData(const CMakeProjectData &data, KDevelop::IProject* project, const QSharedPointer<CMakeServer>& server) (gdb) down #5 0x0000000000000031 in ?? () -- You are receiving this mail because: You are watching all bug changes.