Dimitrios Apostolou
Dimitrios Apostolou
@dgnorton could you maybe reopen the issue? Is there a way to log the slow queries, without logging all queries? If not, then I believe this is still a valid...
Yes of course, I have set it to `log-queries-after = 1s` together with `query-log-enabled = false`. It's not clear from the page you linked, if that combination works. I assumed...
Reproduced with Clang 13.0.1 and CodeChecker 6.18.2: ``` $ CodeChecker check --build "clang++-13 simple_refcount_demo.cpp" [...] Found 2 defect(s) in simple_refcount_demo.cpp [HIGH] simple_refcount_demo.cpp:43:54: Use of memory after it is freed [cplusplus.NewDelete]...
The attached demo program is simple and the issue easy to reproduce. I'm assuming the ones that followed the issue on Bugzilla got lost on the migration to Github, so...
@csordasmarton It seems there are some extra messages and empty lines, in comparison to the existing lsan test, that cause reports from recent versions of leak sanitizer to be incompatible...
Thanks @csordasmarton. I already tried something similar and I'm afraid it's not that simple. When you have more than one leak reported (see the file lsan2.out), the 2nd (and onwards)...
> No, we didn't have an issue for this problem Filed #3617 to keep track of the issue.
I added a bunch of outputs for ASAN too, to show that a lot of important information is missed by report-converter. In particular only the first stacktrace after `==ERROR` is...
Here is what I execute after `make standalone_package` to make `report-converter` standalone executable: ```sh cd build/CodeChecker/bin/ mv report-converter _report-converter echo '#!/bin/bash '"source '$(pwd)/../../../venv/bin/activate' exec python3 '$(pwd)/_report-converter'" '"$@"' >> report-converter chmod...
> When you tell it to stop, the main process will receive the appropriate signal, and will begin to destroy the process pool under it. Will it wait for the...