]> git.lizzy.rs Git - rust.git/commitdiff
Bless after rebase
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>
Tue, 29 Nov 2022 16:40:25 +0000 (16:40 +0000)
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>
Tue, 6 Dec 2022 18:59:47 +0000 (18:59 +0000)
src/tools/miri/tests/fail/stacked_borrows/box_noalias_violation.stderr
src/tools/miri/tests/fail/stacked_borrows/illegal_dealloc1.stderr
src/tools/miri/tests/fail/stacked_borrows/retag_data_race_read.stderr
src/tools/miri/tests/fail/stacked_borrows/retag_data_race_write.stderr

index 3c84cbcfd5182a0b543111003d38052a8e498bb4..139fcd0ca4583d67502bb5e41081831f0b902093 100644 (file)
@@ -18,7 +18,7 @@ LL | unsafe fn test(mut x: Box<i32>, y: *const i32) -> i32 {
    |                ^^^^^
    = note: BACKTRACE:
    = note: inside `test` at $DIR/box_noalias_violation.rs:LL:CC
-note: inside `main` at $DIR/box_noalias_violation.rs:LL:CC
+note: inside `main`
   --> $DIR/box_noalias_violation.rs:LL:CC
    |
 LL |         test(Box::from_raw(ptr), ptr);
index 3b7802901a54eb723ddf23ae38b9b557d1772a2c..f2f13d0d5594ea1215bf7f43a95560e05325a390 100644 (file)
@@ -18,7 +18,7 @@ LL |         ptr1.write(0);
    |         ^^^^^^^^^^^^^
    = note: BACKTRACE:
    = note: inside `std::alloc::dealloc` at RUSTLIB/alloc/src/alloc.rs:LL:CC
-note: inside `main` at $DIR/illegal_deALLOC.rs:LL:CC
+note: inside `main`
   --> $DIR/illegal_deALLOC.rs:LL:CC
    |
 LL |         dealloc(ptr2, Layout::from_size_align_unchecked(1, 1));
index f25d689524d1b3c86a565ea215a7ec5034a5e03a..5dc936f0707443f5805196e164c647ff5c17a238 100644 (file)
@@ -8,7 +8,7 @@ LL |         *p = 5;
    = help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
    = note: BACKTRACE:
    = note: inside `thread_2` at $DIR/retag_data_race_read.rs:LL:CC
-note: inside closure at $DIR/retag_data_race_read.rs:LL:CC
+note: inside closure
   --> $DIR/retag_data_race_read.rs:LL:CC
    |
 LL |     let t2 = std::thread::spawn(move || thread_2(p));
index f97e6bb11e9d674a7535cfef0329d4c8397f61aa..03c2450356416586a3d153f6261e01dec8f2c9e2 100644 (file)
@@ -8,7 +8,7 @@ LL |         *p = 5;
    = help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
    = note: BACKTRACE:
    = note: inside `thread_2` at $DIR/retag_data_race_write.rs:LL:CC
-note: inside closure at $DIR/retag_data_race_write.rs:LL:CC
+note: inside closure
   --> $DIR/retag_data_race_write.rs:LL:CC
    |
 LL |     let t2 = std::thread::spawn(move || thread_2(p));