Skip to content

Commit 77b0c40

Browse files
committed
test: add test case cannot_alloc_max_usize_minus_some
1 parent cc72c24 commit 77b0c40

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

crates/rlsf/tests/global.rs

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// Adopted from
22
// https://github.com/alexcrichton/dlmalloc-rs/blob/master/tests/global.rs
3-
use std::collections::HashMap;
3+
use std::{
4+
alloc::{GlobalAlloc, Layout},
5+
collections::HashMap,
6+
};
47

58
#[global_allocator]
69
#[cfg(any(all(target_arch = "wasm32", not(target_feature = "atomics")), unix))]
@@ -52,3 +55,15 @@ fn test_larger_than_word_alignment() {
5255
}
5356
}
5457
}
58+
59+
#[test]
60+
fn cannot_alloc_max_usize_minus_some() {
61+
// The test should complete without causing OOM
62+
for offset in (0..64).step_by(8) {
63+
let layout = Layout::from_size_align(usize::MAX - offset, 1).unwrap();
64+
for _ in 0..1000000 {
65+
let result = unsafe { A.alloc(layout) };
66+
assert!(result.is_null());
67+
}
68+
}
69+
}

0 commit comments

Comments
 (0)