Ekleog-NEAR
Ekleog-NEAR
This, in particular, should make fuzzers built with [cargo-bolero](https://github.com/camshaft/bolero) able to get the proper error message auto-detected, rather than a generic abort. PS: Hopefully this should be small enough to...
Currently, lychee has its own `.lycheeignore` format. It’d be very nice if it could read the `.gitignore`, in order to avoid having to duplicate all information there. See also the...
As part of https://github.com/near/nearcore/pull/10852, we disabled test_storage_proof_size_soft_limit This is likely because we no longer fetch the contract wasm from trie upon each execution, and so the test stops hitting the...
As part of #10852, we’re calling near_vm_runner::run twice: - Once with `None` as a code parameter, trying to hit the cache - If the cache didn’t hit, again with `Some(&code)`...
Currently we switch between chunk and shard cache manually. However, it is semantically supposed to be a scope. This works fine for now because we don’t have any early return....
We should unit test our chunk/shard cache. When writing https://github.com/near/nearcore/pull/10852 only `test_storage_read_write_costs_runtime` triggered, and that was by pure luck. We can probably just have one action of each type, and...
Hey! So I’m trying to list the exports of modules generated by wasm-smith. My first attempt was the following: ```rust fuzz_target!(|data: wasm_smith::Module| { let bytes = data.to_bytes(); let module =...
I remember discussing this at some point, but somehow cannot find it in github any longer, so I’m opening this issue to track it :) `cargo bolero list` currently needs...
See the discussion at https://github.com/camshaft/bolero/pull/163. Basically, there are multiple ways: 1. Never use a nonexistent profile. Basically the behavior before #163. Drawback: unintuitive, it’s hard for a user to guess...
Oops, I got tricked once again by github by submitting early. If I use bolero 0.8.0 and cargo-bolero 0.8.0, and attempt to run a fuzzer with `-j 8`, hoping to...