forked from near/nearcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuzz.toml
52 lines (43 loc) · 1.27 KB
/
fuzz.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[[branch]]
name = "master"
weight = 10
[[branch]]
name = "1.34.0"
weight = 10
[[branch]]
name = "1.33.0"
weight = 10
[[target]]
crate = "runtime/near-vm-runner/fuzz"
runner = "runner"
weight = 10
flags = ["-len_control=0", "-prefer_small=0", "-max_len=4000000", "-rss_limit_mb=3072"]
[[target]]
crate = "runtime/near-vm-runner/fuzz"
runner = "diffrunner"
weight = 10
flags = ["-len_control=0", "-prefer_small=0", "-max_len=4000000", "-rss_limit_mb=3072"]
# [[target]]
# Disabled for now because of the frequent intermittent failures,
# should re-enable once they've been investigated
# crate = "test-utils/runtime-tester/fuzz"
# runner = "runtime_fuzzer"
# weight = 0
# flags = ["-len_control=0", "-prefer_small=0", "-max_len=4000000"]
[[target]]
crate = "core/account-id/fuzz"
runner = "borsh"
weight = 1
flags = ["-len_control=0", "-prefer_small=0", "-max_len=4000000"]
[[target]]
crate = "core/account-id/fuzz"
runner = "serde"
weight = 1
flags = ["-len_control=0", "-prefer_small=0", "-max_len=4000000"]
# TODO: Add current_vm_is_reproducible once switch to bolero complete
# TODO(#1234): Enable the test again once <some condition>
# [[target]]
# crate = "chain/jsonrpc/fuzz"
# runner = "fuzz_target_1"
# weight = 0
# flags = ["-len_control=0", "-prefer_small=0", "-max_len=4000000"]