Alexander Richardson
Alexander Richardson
Computing the untracked files can take a long time (multiple seconds) and I don't want to wait for my prompt that long. I've added a new config option to disable...
This allows generating CMakeLists.txt that use ${CMAKE_SOURCE_DIR} and ${CMAKE_BINARY_DIR} instead of absolute paths from compile_commands.json.
I am trying to run kyua on QEMU MIPS and since this is an emulated platform it is much slower than real hardware so the 60 second timeout is not...
Makes it easier to build with different compilers and also ensures that the binary path is correct in all the scripts.
This also brings back the check for __func__ that was deleted in commit 9b41a091bcb2fb9bd2b6db79d06a0c976d1a5663
I split this up into lots of small commits to make it easier to review. It also contains the commit from #208 since I don't know how to make pull...
Should get the test suite closer to passing
I don't believe `errno` has to be zero at the start of `main()`, but this is causing some testsuites to fail (I noticed this in epoll-shim). Using the following test...
The output argument is a struct containing uintptr_t, so we should be storing capabilities there and not integers. Alternatively, the struct should be changed to always use ptraddr_t.