Skip to content

Commit

Permalink
tests: memory consuption - update number of alloc/deallocations of th…
Browse files Browse the repository at this point in the history
…e updated buffer backend to reflect changes in backend
  • Loading branch information
royaltm committed Jun 11, 2024
1 parent 5b022da commit a1b1175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ impl BackendStats for backend::StringBackend<DefaultSymbol> {
impl BackendStats for backend::BufferBackend<DefaultSymbol> {
const MIN_OVERHEAD: f64 = 1.35;
const MAX_OVERHEAD: f64 = 1.58;
const MAX_ALLOCATIONS: usize = 43;
const MAX_DEALLOCATIONS: usize = 41;
const MAX_ALLOCATIONS: usize = 42;
const MAX_DEALLOCATIONS: usize = 40;
const NAME: &'static str = "BufferBackend";
}

Expand Down

0 comments on commit a1b1175

Please sign in to comment.