-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segfault running mull-reporter following the CTest example in the docs #1086
Comments
I just cut a new release with the fix included https://github.com/mull-project/mull/releases/tag/0.25.0 |
Thanks for getting that in! I have been maintaining a Mull spack package internally and will add that version to the list. At some point I may want to push that to the main spack repo as an official package. I could add a section to the Mull docs on how to install and build with Mull and spack if you're interested. |
Thank you so much for doing that, a doc would be much appreciated! |
I'm attempting to run multiple instances of mull-runner and combine the results using mull-reporter, following the example at
https://mull.readthedocs.io/en/0.24.0/tutorials/CTestIntegration.html
but I get a segfault when invoking mull-reporter at the final step. In
RawReport mull::SQLiteReporter::loadRawReport
in SQLiteReporter.cpp it appears that the code inside the following loopis using the wrong SQLite object (should be using
selectMutantsStmt
, but it's usingselectInfoStmt
in the calls to read the columns). I verified that changing those calls fixed my issue. I will create a PR to go along with this.The text was updated successfully, but these errors were encountered: