Skip to content

Commit ee132c8

Browse files
committed
Bless stderr files after rustfmt
1 parent 66e8751 commit ee132c8

7 files changed

+15
-13
lines changed

tests/fail/abort-terminator.stderr

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
33
error: abnormal termination: the program aborted execution
44
--> $DIR/abort-terminator.rs:LL:CC
55
|
6-
LL | extern "C" fn panic_abort() { panic!() }
7-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the program aborted execution
6+
LL | / extern "C" fn panic_abort() {
7+
LL | | panic!()
8+
LL | | }
9+
| |_^ the program aborted execution
810
|
911
= note: inside `panic_abort` at $DIR/abort-terminator.rs:LL:CC
1012
note: inside `main` at $DIR/abort-terminator.rs:LL:CC

tests/fail/alloc/global_system_mixup.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LL | FREE();
1212
note: inside `main` at $DIR/global_system_mixup.rs:LL:CC
1313
--> $DIR/global_system_mixup.rs:LL:CC
1414
|
15-
LL | unsafe { System.deallocate(ptr, l); }
15+
LL | System.deallocate(ptr, l);
1616
| ^
1717

1818
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace

tests/fail/intrinsics/simd-div-by-zero.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
error: Undefined Behavior: dividing by zero
22
--> $DIR/simd-div-by-zero.rs:LL:CC
33
|
4-
LL | simd_div(x, y);
5-
| ^^^^^^^^^^^^^^ dividing by zero
4+
LL | simd_div(x, y);
5+
| ^^^^^^^^^^^^^^ dividing by zero
66
|
77
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
88
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information

tests/fail/intrinsics/simd-div-overflow.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
error: Undefined Behavior: overflow in signed division (dividing MIN by -1)
22
--> $DIR/simd-div-overflow.rs:LL:CC
33
|
4-
LL | simd_div(x, y);
5-
| ^^^^^^^^^^^^^^ overflow in signed division (dividing MIN by -1)
4+
LL | simd_div(x, y);
5+
| ^^^^^^^^^^^^^^ overflow in signed division (dividing MIN by -1)
66
|
77
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
88
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information

tests/fail/intrinsics/simd-float-to-int.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ LL | implement! { f32 }
1111
note: inside `main` at $DIR/simd-float-to-int.rs:LL:CC
1212
--> $DIR/simd-float-to-int.rs:LL:CC
1313
|
14-
LL | let _x : i32x2 = f32x2::from_array([f32::MAX, f32::MIN]).to_int_unchecked();
15-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14+
LL | let _x: i32x2 = f32x2::from_array([f32::MAX, f32::MIN]).to_int_unchecked();
15+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1616
= note: this error originates in the macro `implement` (in Nightly builds, run with -Z macro-backtrace for more info)
1717

1818
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace

tests/fail/intrinsics/simd-gather.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ LL | unsafe { intrinsics::simd_gather(or, ptrs, enable.to_int()) }
1111
note: inside `main` at $DIR/simd-gather.rs:LL:CC
1212
--> $DIR/simd-gather.rs:LL:CC
1313
|
14-
LL | let _result = Simd::gather_select_unchecked(&vec, Mask::splat(true), idxs, Simd::splat(0));
15-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14+
LL | let _result = Simd::gather_select_unchecked(&vec, Mask::splat(true), idxs, Simd::splat(0));
15+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1616

1717
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
1818

tests/fail/intrinsics/simd-reduce-invalid-bool.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
error: Undefined Behavior: each element of a SIMD mask must be all-0-bits or all-1-bits
22
--> $DIR/simd-reduce-invalid-bool.rs:LL:CC
33
|
4-
LL | simd_reduce_any(x);
5-
| ^^^^^^^^^^^^^^^^^^ each element of a SIMD mask must be all-0-bits or all-1-bits
4+
LL | simd_reduce_any(x);
5+
| ^^^^^^^^^^^^^^^^^^ each element of a SIMD mask must be all-0-bits or all-1-bits
66
|
77
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
88
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information

0 commit comments

Comments
 (0)