-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
28 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,15 @@ | ||
warning: integer-to-pointer cast | ||
error: Undefined Behavior: incorrect layout on deallocation: ALLOC has size 8192 and alignment ALIGN, but gave size 4096 and alignment ALIGN | ||
--> $DIR/munmap_partial.rs:LL:CC | ||
Check failure on line 2 in tests/fail-dep/shims/munmap_partial.stderr GitHub Actions / build (ubuntu-latest, x86_64-unknown-linux-gnu)actual output differs from expected
|
||
| | ||
LL | libc::munmap(ptr, 1); | ||
| ^^^^^^^^^^^^^^^^^^^^ integer-to-pointer cast | ||
| ^^^^^^^^^^^^^^^^^^^^ incorrect layout on deallocation: ALLOC has size 8192 and alignment ALIGN, but gave size 4096 and alignment ALIGN | ||
| | ||
Check failure on line 6 in tests/fail-dep/shims/munmap_partial.stderr GitHub Actions / build (ubuntu-latest, x86_64-unknown-linux-gnu)actual output differs from expected
|
||
= help: This program is using integer-to-pointer casts or (equivalently) `ptr::from_exposed_addr`, | ||
= help: which means that Miri might miss pointer bugs in this program. | ||
= help: See https://doc.rust-lang.org/nightly/std/ptr/fn.from_exposed_addr.html for more details on that operation. | ||
= help: To ensure that Miri does not miss bugs in your program, use Strict Provenance APIs (https://doc.rust-lang.org/nightly/std/ptr/index.html#strict-provenance, https://crates.io/crates/sptr) instead. | ||
= help: You can then pass the `-Zmiri-strict-provenance` flag to Miri, to ensure you are not relying on `from_exposed_addr` semantics. | ||
= help: Alternatively, the `-Zmiri-permissive-provenance` flag disables this warning. | ||
= note: BACKTRACE: | ||
= note: inside `main` at $DIR/munmap_partial.rs:LL:CC | ||
|
||
error: unsupported operation: Miri only supports munmap calls that exactly unmap a region previously returned by mmap | ||
--> $DIR/munmap_partial.rs:LL:CC | ||
| | ||
LL | libc::munmap(ptr, 1); | ||
| ^^^^^^^^^^^^^^^^^^^^ Miri only supports munmap calls that exactly unmap a region previously returned by mmap | ||
| | ||
= help: this is likely not a bug in the program; it indicates that the program performed an operation that the interpreter does not support | ||
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior | ||
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information | ||
= note: BACKTRACE: | ||
= note: inside `main` at $DIR/munmap_partial.rs:LL:CC | ||
|
||
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace | ||
|
||
error: aborting due to 1 previous error; 1 warning emitted | ||
error: aborting due to 1 previous error | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters