Cole Lightfighter
Cole Lightfighter
That work is great, will be happy to coordinate with @0x7CFE on strategy. ~~~Think it may still be safe to get started on~~~ Will hold for now on creating a...
> ethcore-light already exists and stores the light client database schema, import logic, and network code @rphmeier, I did not realize this was a thing. Perhaps a new name entirely...
Thank you for opening this issue, working on something similar myself for the PrivateContract example. @tomusdrw this will likely solve the issues I'm having with recovering correct addresses, many thanks!
> I think we can do significantly better Agreed :+1: Without knowing the internals, libFuzzer (cargo-fuzz) gets code coverage by instrumenting code. ~~~Bet there are some really good ideas in...
Found this: https://clang.llvm.org/docs/SourceBasedCodeCoverage.html libFuzzer uses `SanitizerCoverage` and `gcov` to instrument the binary. Both of those tools work on the AST of the instrumented program, so using @maciejhirsz's Lunarity tool will...
Found a couple more techniques / tools for generating code coverage on Rust: - https://github.com/marco-c/grcov - https://github.com/kennytm/cov Both those tools are from recent comments from this Rust RFC issue about...
> The way of outputting the standarts-compatible coverage data is indeed something we can borrow from those implementations. This sounds like a good approach. After initial tests with gcov, and...