You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
just one more question. The crate is working fine for me at ethabi repo, but I have problems with the other repo, which has slightly different project structure. pr: debris/tiny-keccak#19 coveralls report: https://coveralls.io/builds/13753308 coveralls reports that no files were covered
The text was updated successfully, but these errors were encountered:
kcov relies on debug symbols (and probably a sane optimization level) to do its work, but you are removing debug symbols and setting opt-level to 3 in the test profile, which cargo-travis uses : https://github.com/debris/tiny-keccak/blob/master/Cargo.toml#L19
When I set debug = true in the test profile, I managed to get a coverage report.
I should probably make it error hard with a good error message when it fails this way.
roblabla
changed the title
tiny-keccak has no coverage report
Handle lack of debug symbols in the test profile
Oct 17, 2017
Investingating some old issues. We currently have some code injecting -C debuginfo=2 when built with --release. I think unconditionally injecting -C debuginfo=2 would fix this problem for good.
Reported by @debris at #18 (comment)
The text was updated successfully, but these errors were encountered: