Skip to content

Commit 0cf1a91

Browse files
Remove UB in test_ptr_subtraction test
1 parent 3281e62 commit 0cf1a91

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/libcore/tests/ptr.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@ fn test_ptr_addition() {
207207
}
208208

209209
#[test]
210-
#[cfg(not(miri))] // This test performs invalid OOB pointer arithmetic
211210
fn test_ptr_subtraction() {
212211
unsafe {
213212
let xs = vec![0,1,2,3,4,5,6,7,8,9];
@@ -223,8 +222,11 @@ fn test_ptr_subtraction() {
223222
let m_start = xs_mut.as_mut_ptr();
224223
let mut m_ptr = m_start.offset(9);
225224

226-
while m_ptr >= m_start {
225+
loop {
227226
*m_ptr += *m_ptr;
227+
if m_ptr == m_start {
228+
break;
229+
}
228230
m_ptr = m_ptr.offset(-1);
229231
}
230232

0 commit comments

Comments
 (0)