Commit bde23ab
test(fixtures): add type_info: None to Hypothesis/Definition/Variable literals
echidna::core::{Hypothesis, Definition, Variable} gained an
`Option<TypeInfo>` `type_info` field (likely part of the type-system
decoration layer in feat 8c46e2b / 53af277 etc.) but the following
fixture call sites were not updated, breaking cargo check --all-targets:
- tests/common/generators.rs:71 (Hypothesis)
- tests/common/generators.rs:94 (Definition)
- tests/common/generators.rs:113 (Variable)
- tests/common/mod.rs:44 (Hypothesis)
- benches/proof_benchmarks.rs:39 (Hypothesis)
- tests/sanity_suite.rs:53 (Variable — make_proof_state Bool)
- tests/sanity_suite.rs:76 (Variable — make_proof_state_int Int)
- tests/sanity_suite.rs:510 (Variable — adversarial contradiction test)
All 8 sites get `type_info: None,` — safe default for property-based /
benchmark / sanity fixtures that don't need type-info decoration.
After fix: cargo test --test neural_property_tests --test aspect_tests
--test e2e_prover_test --test security_aspect_tests --test sanity_suite
passes (32 test units across the 5 binaries).
Known remaining cargo check --all-targets breakage, NOT fixed here:
examples/aspect_tagging_demo.rs:7 — unresolved import of
`echidna::aspect::NeuralTagger`. Separate defect, tracked independently.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 99381fe commit bde23ab
4 files changed
Lines changed: 12 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| 43 | + | |
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| 75 | + | |
75 | 76 | | |
76 | 77 | | |
77 | 78 | | |
| |||
95 | 96 | | |
96 | 97 | | |
97 | 98 | | |
| 99 | + | |
98 | 100 | | |
99 | 101 | | |
100 | 102 | | |
| |||
110 | 112 | | |
111 | 113 | | |
112 | 114 | | |
113 | | - | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
114 | 120 | | |
115 | 121 | | |
116 | 122 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| 48 | + | |
48 | 49 | | |
49 | 50 | | |
50 | 51 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| 56 | + | |
56 | 57 | | |
57 | 58 | | |
58 | 59 | | |
| |||
76 | 77 | | |
77 | 78 | | |
78 | 79 | | |
| 80 | + | |
79 | 81 | | |
80 | 82 | | |
81 | 83 | | |
| |||
510 | 512 | | |
511 | 513 | | |
512 | 514 | | |
| 515 | + | |
513 | 516 | | |
514 | 517 | | |
515 | 518 | | |
| |||
0 commit comments