generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 140
Open
Labels
[C] BugThis is a bug. Something isn't working.This is a bug. Something isn't working.[E] PerformanceTrack performance improvement (Time / Memory / CPU)Track performance improvement (Time / Memory / CPU)
Description
I tried this code:
// fmt.rs
#[kani::proof]
fn fmt_i8() {
let num: i8 = kani::any();
let s = format!("{num}");
assert!(s.len() <= 4);
}using the following command line invocation:
kani fmt.rs
with Kani version: #2551
I expected to see this happen: Verification succeeds in a matter of seconds (before upgrade this harness used to take 6s)
Instead, this happened: Verification took about 10 minutes.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
[C] BugThis is a bug. Something isn't working.This is a bug. Something isn't working.[E] PerformanceTrack performance improvement (Time / Memory / CPU)Track performance improvement (Time / Memory / CPU)