Added ScaledFuzzer capabilities

This commit is contained in:
Riley-Kilgore
2024-12-04 06:34:49 -08:00
committed by Riley
parent f55419e8fb
commit 699628df62
9 changed files with 256 additions and 38 deletions

View File

@@ -9,7 +9,7 @@ Schema {
Var {
tipo: RefCell {
value: Generic {
id: 64,
id: 65,
},
},
alias: None,

View File

@@ -1139,7 +1139,7 @@ where
Test::PropertyTest(property_test) => property_test
.benchmark(seed, property_max_success, plutus_version)
.into_iter()
.map(|result| TestResult::Benchmark(result))
.map(TestResult::Benchmark)
.collect::<Vec<_>>(),
})
.collect::<Vec<TestResult<(Constant, Rc<Type>), PlutusData>>>()

View File

@@ -9,7 +9,7 @@ Schema {
Var {
tipo: RefCell {
value: Generic {
id: 64,
id: 65,
},
},
alias: None,

View File

@@ -230,7 +230,7 @@ impl EventListener for Terminal {
" Complete"
.if_supports_color(Stderr, |s| s.bold())
.if_supports_color(Stderr, |s| s.green()),
format!("benchmark results written to CSV")
"benchmark results written to CSV"
.if_supports_color(Stderr, |s| s.bold())
);
}