Simon Kågström

Results 285 comments of Simon Kågström

Thanks for testing! If you look in the coverage report for the actual D3D12CreateDevice, can you see what goes wrong there? Traditionally, failures have typically been because the DWARF debug...

If you build with -fno-pie, and use --skip-solibs, do you get coverage for your tests? I've done that when using ASAN, which also doesn't play well with the shared library...

Well, the binary builds are in general prone to breakage (like when the distro is bumped), so might not be so good to depend on anyway. I actually forgot there...

I don't remember quite what the problem was, but one of the libraries kcov links to unfortunately prevents a completely static build. I'm mostly on Mac these days, so don't...

... sorry, saw in the link you added that the dependency issues were investigated.

Yes, unfortunately it's how it works. Kcov really knows nothing about the high-level code, and only parses the DWARF information. Sometimes, multiple addresses map to the same line, and you'll...

Wow, a PR for Cibyl! Thanks a lot for going through this! It was written at a time when Python 3 didn't exist (or at least not on my systems),...

The metainfo contains the stack size and the start/end of memory. There's unfortunately not much of a community around Cibyl (or J2ME in general, I guess), so not too many...

Yes, you could probably do it just as well in GDB. Or just via `objdump -d`. Not sure my tool is that much useful for MIPS these days :-) Perhaps...

As a test, you could actually try to simply ignore the problem with the JAL to 0, e.g., by setting it to 0x1000000 or something, and see if you're able...