Skip to content

Rollup of 7 pull requests #128719

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 30 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
644550f
Improve panic message and surrounding documentation for Ord violations
Voultapher Jul 27, 2024
00ce238
Improve panic sections for sort*, sort_unstable* and select_nth_unsta…
Voultapher Jul 27, 2024
afc404f
Apply review comments
Voultapher Jul 31, 2024
eae7a18
Hide internal sort module
Voultapher Aug 1, 2024
c2c46e3
Forbid unsafe_op_in_unsafe_fn in vxworks specific os and sys files
Aug 3, 2024
613155c
Apply review comments to PartialOrd section
Voultapher Aug 3, 2024
9717dad
Stabilize `min_exhaustive_patterns`
Nadrieril Mar 20, 2024
a10b823
Update tests
Nadrieril Jul 27, 2024
d0601da
Update std and compiler
Nadrieril Mar 20, 2024
a1d0cdb
Test that 0/unknown-length arrays are nonempty
Nadrieril Mar 30, 2024
48c7ebe
Fixes in various places
Nadrieril Mar 20, 2024
c369c20
Add a triagebot mention for `library/Cargo.lock`
tgross35 Aug 5, 2024
4af77df
implement BufReader::peek
lolbinarycat Jul 30, 2024
c8d50ef
Windows: Test if `\\.\NUL` works as an input file
ChrisDenton Aug 5, 2024
c6d9482
Don't ICE if getting the input's file_stem fails
ChrisDenton Aug 5, 2024
63bf9e1
Maintain highlighting in `note` and `help` even when they have a span
estebank May 9, 2024
c9170a1
On trait bound mismatch, detect multiple crate versions in dep tree
estebank May 9, 2024
089d447
Add test for mixing types from two incompatible crate versions
estebank May 13, 2024
829561f
Add `help` about using `cargo tree`
estebank May 13, 2024
1f9042d
fix rebase
estebank Jul 12, 2024
caebb07
Change test to be only-linux and ignore-wasm32
estebank Jul 12, 2024
3fd645e
Check staticlib name falls back to `rust_out`
ChrisDenton Aug 5, 2024
b32a96c
Move test to be make instead of ui
estebank Aug 6, 2024
a27386d
Rollup merge of #122792 - Nadrieril:stabilize-min-exh-pats2, r=fee1-dead
matthiaskrgr Aug 6, 2024
12323c9
Rollup merge of #124944 - estebank:multiple-crate-versions, r=fee1-dead
matthiaskrgr Aug 6, 2024
7d2eac1
Rollup merge of #128273 - Voultapher:improve-ord-violation-help, r=wo…
matthiaskrgr Aug 6, 2024
7a9fea2
Rollup merge of #128406 - lolbinarycat:bufreader_peek, r=Mark-Simulacrum
matthiaskrgr Aug 6, 2024
17c155b
Rollup merge of #128539 - biabbas:deny_unsafe, r=workingjubilee
matthiaskrgr Aug 6, 2024
29b25e0
Rollup merge of #128692 - tgross35:update-triagebot, r=Mark-Simulacrum
matthiaskrgr Aug 6, 2024
db95a01
Rollup merge of #128710 - ChrisDenton:null, r=jieyouxu
matthiaskrgr Aug 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Windows: Test if \\.\NUL works as an input file
  • Loading branch information
ChrisDenton committed Aug 5, 2024
commit c8d50ef2ee71b6b586e52f0834657a7fd4b42800
9 changes: 9 additions & 0 deletions tests/run-make/dos-device-input/rmake.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
//@ only-windows
// Reason: dos devices are a Windows thing

use run_make_support::rustc;

fn main() {
rustc().input(r"\\.\NUL").crate_type("staticlib").run();
rustc().input(r"\\?\NUL").crate_type("staticlib").run();
}