|
@@ -354,10 +354,6 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
#[test]
|
|
|
- #[cfg_attr(
|
|
|
- miri,
|
|
|
- ignore = "`ptr::write_unaligned(dst, value)` is attempting a write access but no exposed tags have suitable permission in the borrow stack for this location"
|
|
|
- )]
|
|
|
fn test_read_first_lost() {
|
|
|
let mut mmapped_buf = MMappedBuf {
|
|
|
data: [0; PAGE_SIZE * 2],
|
|
@@ -397,10 +393,9 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
fn write<T: Debug>(mmapped_buf: &mut MMappedBuf, offset: usize, value: T) -> usize {
|
|
|
- let dst = (mmapped_buf as *const _ as usize + PAGE_SIZE + offset) as *const PerfSample<T>
|
|
|
- as *mut T;
|
|
|
+ let dst: *mut _ = mmapped_buf;
|
|
|
unsafe {
|
|
|
- ptr::write_unaligned(dst, value);
|
|
|
+ ptr::write_unaligned(dst.byte_add(PAGE_SIZE + offset).cast(), value);
|
|
|
mmapped_buf.mmap_page.data_head = (offset + mem::size_of::<T>()) as u64;
|
|
|
mmapped_buf.mmap_page.data_head as usize
|
|
|
}
|
|
@@ -430,10 +425,6 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
#[test]
|
|
|
- #[cfg_attr(
|
|
|
- miri,
|
|
|
- ignore = "`ptr::write_unaligned(dst, value)` is attempting a write access but no exposed tags have suitable permission in the borrow stack for this location"
|
|
|
- )]
|
|
|
fn test_read_first_sample() {
|
|
|
let mut mmapped_buf = MMappedBuf {
|
|
|
data: [0; PAGE_SIZE * 2],
|
|
@@ -451,10 +442,6 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
#[test]
|
|
|
- #[cfg_attr(
|
|
|
- miri,
|
|
|
- ignore = "`ptr::write_unaligned(dst, value)` is attempting a write access but no exposed tags have suitable permission in the borrow stack for this location"
|
|
|
- )]
|
|
|
fn test_read_many_with_many_reads() {
|
|
|
let mut mmapped_buf = MMappedBuf {
|
|
|
data: [0; PAGE_SIZE * 2],
|
|
@@ -477,10 +464,6 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
#[test]
|
|
|
- #[cfg_attr(
|
|
|
- miri,
|
|
|
- ignore = "`ptr::write_unaligned(dst, value)` is attempting a write access but no exposed tags have suitable permission in the borrow stack for this location"
|
|
|
- )]
|
|
|
fn test_read_many_with_one_read() {
|
|
|
let mut mmapped_buf = MMappedBuf {
|
|
|
data: [0; PAGE_SIZE * 2],
|
|
@@ -502,10 +485,6 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
#[test]
|
|
|
- #[cfg_attr(
|
|
|
- miri,
|
|
|
- ignore = "`ptr::write_unaligned(dst, value)` is attempting a write access but no exposed tags have suitable permission in the borrow stack for this location"
|
|
|
- )]
|
|
|
fn test_read_last_sample() {
|
|
|
let mut mmapped_buf = MMappedBuf {
|
|
|
data: [0; PAGE_SIZE * 2],
|
|
@@ -525,10 +504,6 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
#[test]
|
|
|
- #[cfg_attr(
|
|
|
- miri,
|
|
|
- ignore = "`ptr::write_unaligned(dst, value)` is attempting a write access but no exposed tags have suitable permission in the borrow stack for this location"
|
|
|
- )]
|
|
|
fn test_read_wrapping_sample_size() {
|
|
|
let mut mmapped_buf = MMappedBuf {
|
|
|
data: [0; PAGE_SIZE * 2],
|
|
@@ -566,10 +541,6 @@ mod tests {
|
|
|
}
|
|
|
|
|
|
#[test]
|
|
|
- #[cfg_attr(
|
|
|
- miri,
|
|
|
- ignore = "`ptr::write_unaligned(dst, value)` is attempting a write access but no exposed tags have suitable permission in the borrow stack for this location"
|
|
|
- )]
|
|
|
fn test_read_wrapping_value() {
|
|
|
let mut mmapped_buf = MMappedBuf {
|
|
|
data: [0; PAGE_SIZE * 2],
|