Ralf Jung
d09db1660b
fix and slightly improve data race reports
2022-07-01 20:13:44 -04:00
Ralf Jung
a2e61aeeff
rustup
2022-06-29 21:31:27 -04:00
Ralf Jung
c4e86e103e
add option for recursive field retagging
2022-06-29 18:22:30 -04:00
Ralf Jung
28dea673be
rustup
2022-06-29 08:33:06 -04:00
Ralf Jung
8bd4bbe3e4
tweak int2ptr diagnostics
2022-06-28 08:52:22 -04:00
Ralf Jung
098704e10f
make use of get_alloc_info
2022-06-27 21:22:46 -04:00
Ralf Jung
294ef15adb
more int2ptr cast tests, and fix casting of addresses inside dead allocations
2022-06-26 22:19:56 -04:00
Ralf Jung
13d425daeb
make permissive provenance and raw-ptr tagging the default
2022-06-26 21:14:42 -04:00
Ralf Jung
5aeba7f86b
make a bunch of tests look more like how they did before rustfmt
2022-06-25 23:31:24 -04:00
Ralf Jung
d3ca71ba37
test that &mut !Unpin references are protected
2022-06-25 19:15:11 -04:00
Ralf Jung
58c79c5b6f
tweaks and feedback
2022-06-24 22:02:17 -04:00
Ralf Jung
4fbb284a99
implement 'delimited' expose tracking so we still detect some UB
2022-06-24 20:05:56 -04:00
Ralf Jung
8d6fdaa024
make the tests pass
...
(and some formatting)
2022-06-24 18:03:02 -04:00
Ralf Jung
2deb9e5dae
add exposed_only_ro test
2022-06-24 16:21:47 -04:00
carbotaniuman
57ce47b728
Handle wildcard pointers in SB
2022-06-24 16:10:23 -04:00
David Tolnay
e5f40ca9cb
Bless stderr files after rustfmt
2022-06-23 13:08:52 -07:00
David Tolnay
8833197a62
Manual adjustments
2022-06-23 13:08:52 -07:00
David Tolnay
a23eb46b5b
Format late arrivals with rustfmt
2022-06-23 13:08:52 -07:00
bors
c38e1e9d62
Auto merge of #2250 - rust-lang:gesundheit, r=oli-obk
...
Require local annotations for local diagnostics
if/when we get flaky diagnostics we can revisit and add more helpers for those
2022-06-23 13:49:56 +00:00
Oli Scherer
c4ffe680e3
Require local annotations for local diagnostics
2022-06-23 13:49:02 +00:00
bors
655eed35b7
Auto merge of #2248 - RalfJung:arc-drop-fix, r=RalfJung
...
do not protect SRW items
This is the Miri version of https://github.com/rust-lang/rust/pull/98017 .
2022-06-22 21:39:41 +00:00
bors
3d1d345f8f
Auto merge of #2255 - dtolnay-contrib:rustfmt7, r=oli-obk
...
Format tests with rustfmt (288-299 of 299)
Extracted from #2097 .
I'll make a separate PR to enable checking the `tests` directory's formatting in CI. I'll need to rebase that after both this and #2254 have landed, and if any new non-rustfmt-formatted files appear in the meantime, we can include formatting those in the same PR that enables the CI.
2022-06-22 10:04:08 +00:00
bors
5e584d25ef
Auto merge of #2252 - dtolnay-contrib:rustfmt5, r=oli-obk
...
Format tests with rustfmt (225-275 of 300)
Extracted from #2097 .
These cases all involve a line comment at the end of a block that rustfmt has chosen to wrap.
```diff
- unsafe { (*ptr).set(20); } //~ ERROR does not exist in the borrow stack
+ unsafe {
+ (*ptr).set(20);
+ } //~ ERROR does not exist in the borrow stack
```
I have moved all of those comments back onto the same line as the content of the block instead, as was indicated being `@RalfJung's` preference in https://github.com/rust-lang/miri/pull/2097#discussion_r862436672 .
```diff
+ unsafe {
+ (*ptr).set(20); //~ ERROR does not exist in the borrow stack
+ }
```
2022-06-22 09:04:44 +00:00
David Tolnay
274085cebd
Manual adjustments
2022-06-21 23:52:24 -07:00
David Tolnay
05893d9026
Bless stderr files after rustfmt
2022-06-21 23:21:37 -07:00
David Tolnay
639f660dde
Manual adjustments
2022-06-21 23:21:12 -07:00
David Tolnay
ba23d37b70
Format tests with rustfmt (288-299 of 299)
2022-06-21 22:58:00 -07:00
David Tolnay
7d09004aee
Format tests with rustfmt (276-287 of 299)
2022-06-21 22:57:47 -07:00
bors
7a1b08e46e
Auto merge of #2251 - dtolnay-contrib:rustfmt4, r=RalfJung
...
Format tests with rustfmt (201-224 of 300)
Extracted from #2097 . Last of the easy cases which do not involve moving around a comment.
2022-06-22 04:27:04 +00:00
Ralf Jung
f992099820
fix ICE when const refers to extern static
2022-06-21 21:03:40 -07:00
David Tolnay
f1044d2f77
Bless stderr files after rustfmt
2022-06-21 11:46:10 -07:00
David Tolnay
7326da7ce3
Manual adjustments
2022-06-21 11:46:09 -07:00
David Tolnay
6827ac2f37
Format tests with rustfmt (225-275 of 300)
2022-06-21 11:46:09 -07:00
David Tolnay
7d40530c52
Bless stderr files after rustfmt
2022-06-21 11:32:15 -07:00
David Tolnay
b3a689e008
Manual adjustments
2022-06-21 11:32:14 -07:00
David Tolnay
5490e775df
Format tests with rustfmt (201-224 of 300)
2022-06-21 11:32:06 -07:00
Ralf Jung
1b214a0d12
do not protect SRW items
2022-06-21 09:32:58 -07:00
David Tolnay
1c66163871
Bless stderr files after rustfmt
2022-06-20 23:50:49 -07:00
David Tolnay
069f5b6615
Format tests with rustfmt (151-200 of 300)
2022-06-20 23:50:40 -07:00
David Tolnay
fed5ea8b10
Manual adjustments
2022-06-20 09:00:49 -07:00
David Tolnay
ee132c8d07
Bless stderr files after rustfmt
2022-06-20 02:23:53 -07:00
David Tolnay
66e8751afc
Format tests and benches with rustfmt (1-50 of 300)
2022-06-20 02:23:53 -07:00
David Tolnay
817adda794
Add rustfmt::skip to some files
...
Five of the files being skipped here are because rustfmt is buggy (see
the error messages below). The others have clearly preferable manual
formatting.
error[internal]: left behind trailing whitespace
--> tests/fail/validity/transmute_through_ptr.rs:18:18:1
|
18 |
| ^^^^
|
warning: rustfmt has failed to format. See previous 1 errors.
error[internal]: left behind trailing whitespace
--> tests/fail/stacked_borrows/illegal_read2.rs:10:10:1
|
10 |
| ^^^^
|
warning: rustfmt has failed to format. See previous 1 errors.
error[internal]: left behind trailing whitespace
--> tests/fail/stacked_borrows/illegal_read5.rs:15:15:1
|
15 |
| ^^^^
|
warning: rustfmt has failed to format. See previous 1 errors.
error[internal]: left behind trailing whitespace
--> tests/fail/stacked_borrows/illegal_read1.rs:10:10:1
|
10 |
| ^^^^
|
warning: rustfmt has failed to format. See previous 1 errors.
error[internal]: left behind trailing whitespace
--> tests/fail/erroneous_const2.rs:9:9:1
|
9 |
| ^^^^
|
warning: rustfmt has failed to format. See previous 1 errors.
2022-06-19 17:21:57 -07:00
Ralf Jung
d194e9823c
rustup
2022-06-16 11:18:09 -07:00
bors
2bbb70f584
Auto merge of #2203 - RalfJung:deprecate, r=oli-obk
...
deprecate -Zmiri-allow-uninit-numbers and -Zmiri-allow-ptr-int-transmute
Cc https://github.com/rust-lang/miri/issues/2187 https://github.com/rust-lang/miri/issues/2188
2022-06-13 10:23:42 +00:00
Ralf Jung
6ed05d976e
bless
2022-06-11 22:34:01 -07:00
Ralf Jung
069d8fdb71
test for Stacked Borrows error during vtable validation
2022-06-11 17:42:23 -07:00
Ralf Jung
11a8b3a00b
bless tests
2022-06-06 20:17:39 -04:00
Ralf Jung
b64c9a0a83
make scheduler preemptive, with configurable preemption rate
2022-06-06 20:16:02 -04:00
Ralf Jung
89edc355e8
bless Windows
2022-06-06 19:48:21 -04:00
Ralf Jung
14913e993b
deprecate -Zmiri-allow-uninit-numbers and -Zmiri-allow-ptr-int-transmute
2022-06-06 16:07:30 -04:00
Andy Wang
1b32d14255
Make racy imperfectly overlapping atomic access unsupported instead of UB
...
Co-authored-by: Ralf Jung <post@ralfj.de>
2022-06-06 19:16:02 +01:00
Andy Wang
1379036713
Simplify known C++20 inconsistency test
2022-06-06 19:16:01 +01:00
Andy Wang
65f39bd5cf
Move tests to new directories
2022-06-06 19:16:01 +01:00
Andy Wang
6a73dedb36
Update experimental threading warning
2022-06-06 19:15:59 +01:00
Andy Wang
32627d5abb
Disable weak memory emulation on scheduler-dependent data race tests
2022-06-06 19:15:23 +01:00
Ralf Jung
84edb76e26
make output bitwidth-independent
2022-06-06 12:35:48 -04:00
Ralf Jung
7f5cfa54d9
port some tests away from flags we want to remove
2022-06-06 11:44:36 -04:00
Ralf Jung
34d4928dce
addr no longer exposes :)
2022-06-06 11:43:25 -04:00
Ralf Jung
63625b0397
adjust for better provenance control
2022-06-06 11:43:25 -04:00
bors
0fbe710012
Auto merge of #2194 - RalfJung:race, r=RalfJung
...
add interesting data race test
This interesting testcase came up in https://github.com/rust-lang/miri/issues/2192 .
2022-06-05 16:38:53 +00:00
Ralf Jung
b2832008e2
add interesting data race test
2022-06-05 12:38:34 -04:00
Ralf Jung
4a852126b9
do not use int2ptr casts in strict provenance tests
2022-06-05 11:47:39 -04:00
Ralf Jung
2b9c45f96f
delete stale stderr files
2022-06-03 08:10:09 -04:00
Ralf Jung
3d634c975c
rename test suite directories
2022-06-01 10:53:38 -04:00