From db8181101d52da0d138b7109f4aac2ff722e288a Mon Sep 17 00:00:00 2001 From: Nathan Ringo Date: Sun, 1 Sep 2024 14:15:07 -0500 Subject: Implement size class splitting. --- crates/alloc_buddy/tests/hosted_test.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crates/alloc_buddy/tests') diff --git a/crates/alloc_buddy/tests/hosted_test.rs b/crates/alloc_buddy/tests/hosted_test.rs index 1afe263..d515f6e 100644 --- a/crates/alloc_buddy/tests/hosted_test.rs +++ b/crates/alloc_buddy/tests/hosted_test.rs @@ -20,7 +20,7 @@ proptest! { #[test] fn test_simple_scenario() { let scenario = Scenario { - range_sizes: vec![7], + range_sizes: vec![10], actions: vec![ Action::Debug, Action::Alloc { @@ -28,6 +28,7 @@ fn test_simple_scenario() { size_class: 0, }, Action::Debug, + Action::Dealloc { index: 0 }, ], }; scenario.run(false) -- cgit v1.2.3