Skip to content

Commit 5e1bfb5

Browse files
committed
Adjust tests for newly added ambiguous_wide_pointer_comparisons lint
1 parent 30c7b18 commit 5e1bfb5

File tree

6 files changed

+9
-2
lines changed

6 files changed

+9
-2
lines changed

compiler/rustc_codegen_cranelift/example/mini_core.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
thread_local
1212
)]
1313
#![no_core]
14-
#![allow(dead_code, internal_features)]
14+
#![allow(dead_code, internal_features, ambiguous_wide_pointer_comparisons)]
1515

1616
#[lang = "sized"]
1717
pub trait Sized {}

library/alloc/tests/vec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1974,7 +1974,7 @@ fn vec_macro_repeating_null_raw_fat_pointer() {
19741974

19751975
let vec = vec![null_raw_dyn; 1];
19761976
dbg!(ptr_metadata(vec[0]));
1977-
assert!(vec[0] == null_raw_dyn);
1977+
assert!(std::ptr::eq(vec[0], null_raw_dyn));
19781978

19791979
// Polyfill for https://github.com/rust-lang/rfcs/pull/2580
19801980

src/tools/miri/tests/pass/pointers.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
//@[tree]compile-flags: -Zmiri-tree-borrows
33
//@compile-flags: -Zmiri-permissive-provenance
44
#![feature(ptr_metadata, const_raw_ptr_comparison)]
5+
#![allow(ambiguous_wide_pointer_comparisons)]
56

67
use std::mem::{self, transmute};
78
use std::ptr;

src/tools/miri/tests/pass/rc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
//@compile-flags: -Zmiri-strict-provenance
44
#![feature(new_uninit)]
55
#![feature(get_mut_unchecked)]
6+
#![allow(ambiguous_wide_pointer_comparisons)]
67

78
use std::cell::{Cell, RefCell};
89
use std::fmt::Debug;

tests/ui/issues/issue-17336.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// build-pass
2+
23
#![allow(unused_must_use)]
4+
#![allow(ambiguous_wide_pointer_comparisons)]
5+
36
#[allow(dead_code)]
47
fn check(a: &str) {
58
let x = a as *const str;

tests/ui/mir/mir_raw_fat_ptr.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
// run-pass
22
// check raw fat pointer ops in mir
33
// FIXME: please improve this when we get monomorphization support
4+
45
#![feature(raw_ref_op)]
6+
#![allow(ambiguous_wide_pointer_comparisons)]
57

68
use std::mem;
79

0 commit comments

Comments
 (0)