Cristian Morales Vega
Cristian Morales Vega
I tried to mock a method with this signature: `void reply(reply)` and the compiler complained with: ``` error: invalid use of non-static member function 9 | TROMPELOEIL_MAKE_MOCK1(reply, void(reply)); | ^~~~~...
I am mocking a function which takes an `error_code` as a parameter (boost::system, but I guess it would be the same with std::error_code) `TROMPELOEIL_MAKE_MOCK1(Functor, void(const error_code&));` And I'm setting a...
When CDash informs GitHub about whether a commit is good it ignores the results of "Dynamic Analysis". So even if there are multiple "Defect Count"s != 0 CDash will still...
Because of https://gitlab.kitware.com/cmake/cmake/issues/19124#note_554428 the only way to reliably get coverage information is to use gcov's "--intermediate-format" option. But currently CDash is unable to parse .gcov files generated using "--intermediate-format".
When calling gcov with `-p -l` (and I always need to because of https://gitlab.kitware.com/cmake/cmake/issues/19124): - If `ctest_coverage()` is used everything is OK - If `ctest_coverage_collect_gcov` is used the total number...
I would like to call gcov with "-s ${CTEST_SOURCE_DIRECTORY} -r" to limit the number of gcov files inside gcov.tar ctest needs to submit to cdash (from 324 to 15 in...
A single build can generate these: ``` http:///buildSummary.php?buildid=88 http:///viewCoverage.php?buildid=88 http:///viewDynamicAnalysis.php?buildid=88 ``` But there isn't a single page grouping all of them. I would argue buildSummary.php is the one that should...
I can build once with both Address and Undefined Behaviour Sanitizers (and given C++ build times I would rather keep it this way). I may even be able to run...
It ignores the previous JANSSON_INSTALL_*_DIR variables. But they were broken, only affecting the pkg-config creation logic, not the actual installation directory. This can't break anybody's existing usage.
I have a system where isnan is a macro redirecting to __isnan(), which is only defined in libm.