File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -555,6 +555,7 @@ fn test_reserve_exact() {
555
555
556
556
#[ test]
557
557
#[ cfg_attr( miri, ignore) ] // Miri does not support signalling OOM
558
+ #[ cfg_attr( target_os = "android" , ignore) ] // Android used in CI has a broken dlmalloc
558
559
fn test_try_reserve ( ) {
559
560
// These are the interesting cases:
560
561
// * exactly isize::MAX should never trigger a CapacityOverflow (can be OOM)
@@ -644,6 +645,7 @@ fn test_try_reserve() {
644
645
645
646
#[ test]
646
647
#[ cfg_attr( miri, ignore) ] // Miri does not support signalling OOM
648
+ #[ cfg_attr( target_os = "android" , ignore) ] // Android used in CI has a broken dlmalloc
647
649
fn test_try_reserve_exact ( ) {
648
650
// This is exactly the same as test_try_reserve with the method changed.
649
651
// See that test for comments.
Original file line number Diff line number Diff line change @@ -1137,6 +1137,7 @@ fn test_reserve_exact() {
1137
1137
1138
1138
#[ test]
1139
1139
#[ cfg_attr( miri, ignore) ] // Miri does not support signalling OOM
1140
+ #[ cfg_attr( target_os = "android" , ignore) ] // Android used in CI has a broken dlmalloc
1140
1141
fn test_try_reserve ( ) {
1141
1142
// These are the interesting cases:
1142
1143
// * exactly isize::MAX should never trigger a CapacityOverflow (can be OOM)
@@ -1254,6 +1255,7 @@ fn test_try_reserve() {
1254
1255
1255
1256
#[ test]
1256
1257
#[ cfg_attr( miri, ignore) ] // Miri does not support signalling OOM
1258
+ #[ cfg_attr( target_os = "android" , ignore) ] // Android used in CI has a broken dlmalloc
1257
1259
fn test_try_reserve_exact ( ) {
1258
1260
// This is exactly the same as test_try_reserve with the method changed.
1259
1261
// See that test for comments.
Original file line number Diff line number Diff line change @@ -1134,6 +1134,7 @@ fn test_reserve_exact_2() {
1134
1134
1135
1135
#[ test]
1136
1136
#[ cfg_attr( miri, ignore) ] // Miri does not support signalling OOM
1137
+ #[ cfg_attr( target_os = "android" , ignore) ] // Android used in CI has a broken dlmalloc
1137
1138
fn test_try_reserve ( ) {
1138
1139
// These are the interesting cases:
1139
1140
// * exactly isize::MAX should never trigger a CapacityOverflow (can be OOM)
@@ -1248,6 +1249,7 @@ fn test_try_reserve() {
1248
1249
1249
1250
#[ test]
1250
1251
#[ cfg_attr( miri, ignore) ] // Miri does not support signalling OOM
1252
+ #[ cfg_attr( target_os = "android" , ignore) ] // Android used in CI has a broken dlmalloc
1251
1253
fn test_try_reserve_exact ( ) {
1252
1254
// This is exactly the same as test_try_reserve with the method changed.
1253
1255
// See that test for comments.
You can’t perform that action at this time.
0 commit comments