File tree 1 file changed +16
-1
lines changed
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
// Adopted from
2
2
// 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
+ } ;
4
7
5
8
#[ global_allocator]
6
9
#[ cfg( any( all( target_arch = "wasm32" , not( target_feature = "atomics" ) ) , unix) ) ]
@@ -52,3 +55,15 @@ fn test_larger_than_word_alignment() {
52
55
}
53
56
}
54
57
}
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
+ }
You can’t perform that action at this time.
0 commit comments