forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#77837 - Aaron1011:bump-miri-backtrace, r=Ralf…
…Jung Bump miri Fixes rust-lang#77791 r? `@RalfJung`
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule miri
updated
24 files
+4 −3 | .appveyor.yml | |
+115 −0 | .github/workflows/ci.yml | |
+6 −3 | .travis.yml | |
+25 −8 | README.md | |
+1 −1 | benches/helpers/miri_helper.rs | |
+17 −5 | cargo-miri/bin.rs | |
+29 −17 | ci.sh | |
+1 −1 | rust-version | |
+4 −7 | src/bin/miri-rustc-tests.rs | |
+1 −1 | src/bin/miri.rs | |
+26 −3 | src/shims/backtrace.rs | |
+74 −69 | src/shims/os_str.rs | |
+5 −0 | src/shims/posix/foreign_items.rs | |
+36 −0 | src/shims/posix/fs.rs | |
+1 −1 | tests/compile-fail/backtrace/bad-backtrace-decl.rs | |
+29 −14 | tests/run-pass/backtrace-api.rs | |
+5 −4 | tests/run-pass/backtrace-api.stderr | |
+5 −4 | tests/run-pass/backtrace-api.stdout | |
+22 −7 | tests/run-pass/float.rs | |
+68 −2 | tests/run-pass/fs.rs | |
+0 −0 | tests/run-pass/fs.stderr | |
+0 −0 | tests/run-pass/fs.stdout | |
+0 −20 | tests/run-pass/fs_libc.rs | |
+28 −1 | tests/run-pass/vecdeque.rs |