Skip to content

Commit 0e723c3

Browse files
committed
fix tests
1 parent 4b5eb49 commit 0e723c3

File tree

9 files changed

+15
-20
lines changed

9 files changed

+15
-20
lines changed

library/alloc/tests/vec.rs

+2-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use core::assert_eq;
22
use core::iter::IntoIterator;
33
use core::num::NonZeroUsize;
44
use core::ptr::NonNull;
5-
use std::alloc::{Allocator, Layout, System, FallibleAdapter, IntoLayout, handle_alloc_error};
5+
use std::alloc::{Allocator, Layout, System, Fatal};
66
use std::assert_matches::assert_matches;
77
use std::borrow::Cow;
88
use std::cell::Cell;
@@ -1096,16 +1096,7 @@ fn test_into_iter_drop_allocator() {
10961096
unsafe { System.deallocate(ptr, layout) }
10971097
}
10981098

1099-
type Result<T, E: std::error::Error> = T
1100-
where
1101-
E: IntoLayout;
1102-
1103-
fn map_result<T, E: std::error::Error>(result: Result<T, E>) -> Self::Result<T, E>
1104-
where
1105-
E: IntoLayout
1106-
{
1107-
result.unwrap_or_else(|e| handle_alloc_error(e.into_layout()))
1108-
}
1099+
type ErrorHandling = Fatal;
11091100
}
11101101

11111102
let mut drop_count = 0;

tests/ui/allocator/object-safe.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
#![feature(allocator_api)]
66

7-
use std::alloc::{Allocator, System};
7+
use std::alloc::{Allocator, System, Fatal};
88

9-
fn ensure_object_safe(_: &dyn Allocator) {}
9+
fn ensure_object_safe(_: &dyn Allocator<ErrorHandling = Fatal>) {}
1010

1111
fn main() {
1212
ensure_object_safe(&System);

tests/ui/box/large-allocator-ice.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![feature(allocator_api)]
33
#![allow(unused_must_use)]
44

5-
use std::alloc::Allocator;
5+
use std::alloc::{Allocator, Fatal};
66

77
struct BigAllocator([usize; 2]);
88

@@ -16,6 +16,7 @@ unsafe impl Allocator for BigAllocator {
1616
unsafe fn deallocate(&self, _: std::ptr::NonNull<u8>, _: std::alloc::Layout) {
1717
todo!()
1818
}
19+
type ErrorHandling = Fatal;
1920
}
2021

2122
fn main() {

tests/ui/box/leak-alloc.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(allocator_api)]
22

3-
use std::alloc::{AllocError, Allocator, Layout, System};
3+
use std::alloc::{AllocError, Allocator, Layout, System, Fatal};
44
use std::ptr::NonNull;
55

66
use std::boxed::Box;
@@ -15,6 +15,8 @@ unsafe impl Allocator for Alloc {
1515
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout) {
1616
System.deallocate(ptr, layout)
1717
}
18+
19+
type ErrorHandling = Fatal;
1820
}
1921

2022
fn use_value(_: u32) {}

tests/ui/box/leak-alloc.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0505]: cannot move out of `alloc` because it is borrowed
2-
--> $DIR/leak-alloc.rs:26:10
2+
--> $DIR/leak-alloc.rs:28:10
33
|
44
LL | let alloc = Alloc {};
55
| ----- binding `alloc` declared here

tests/ui/debuginfo/debuginfo-box-with-large-allocator.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#![feature(allocator_api)]
66

7-
use std::alloc::{AllocError, Allocator, Layout};
7+
use std::alloc::{AllocError, Allocator, Layout, Fatal};
88
use std::ptr::NonNull;
99

1010
struct ZST;
@@ -16,6 +16,7 @@ unsafe impl Allocator for &ZST {
1616
unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout) {
1717
todo!()
1818
}
19+
type ErrorHandling = Fatal;
1920
}
2021

2122
fn main() {

tests/ui/error-codes/E0401.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ LL | bfnr(x);
5353
- impl<A, F> Fn<A> for &F
5454
where A: Tuple, F: Fn<A>, F: ?Sized;
5555
- impl<Args, F, A> Fn<Args> for Box<F, A>
56-
where Args: Tuple, F: Fn<Args>, A: alloc::falloc::Allocator, F: ?Sized;
56+
where Args: Tuple, F: Fn<Args>, A: Allocator, F: ?Sized;
5757
note: required by a bound in `bfnr`
5858
--> $DIR/E0401.rs:4:30
5959
|

tests/ui/error-codes/e0119/conflict-with-std.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | impl AsRef<Q> for Box<Q> {
66
|
77
= note: conflicting implementation in crate `alloc`:
88
- impl<T, A> AsRef<T> for Box<T, A>
9-
where A: alloc::falloc::Allocator, T: ?Sized;
9+
where A: Allocator, T: ?Sized;
1010

1111
error[E0119]: conflicting implementations of trait `From<S>` for type `S`
1212
--> $DIR/conflict-with-std.rs:12:1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
thread 'main' panicked at 'capacity overflow', library/alloc/src/falloc.rs:94:5
1+
thread 'main' panicked at 'capacity overflow', library/alloc/src/falloc.rs:518:5
22
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

0 commit comments

Comments
 (0)